Show / Hide Table of Contents

    Class TransmittalContact

    Class containing the contact information for an individual/company.

    Inheritance
    System.Object
    TransmittalContact
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: DesignData.SDS2.Detail
    Assembly: DesignData.SDS2.Detail.dll
    Syntax
    public sealed class TransmittalContact

    Constructors

    TransmittalContact()

    Declaration
    public TransmittalContact()

    Properties

    AddressOne

    The street address of the contact/company

    Declaration
    public string AddressOne { get; set; }
    Property Value
    Type Description
    System.String

    AddressTwo

    Additional street address for the contact/company

    Declaration
    public string AddressTwo { get; set; }
    Property Value
    Type Description
    System.String

    City

    The city the contact/company is located in

    Declaration
    public string City { get; set; }
    Property Value
    Type Description
    System.String

    Company

    The company the contact works for

    Declaration
    public string Company { get; set; }
    Property Value
    Type Description
    System.String

    Contact

    The name of individual sending/receiving the transmittal

    Declaration
    public string Contact { get; set; }
    Property Value
    Type Description
    System.String

    Email

    Declaration
    public string Email { get; set; }
    Property Value
    Type Description
    System.String

    Phone

    The phone number of the contact/company

    Declaration
    public string Phone { get; set; }
    Property Value
    Type Description
    System.String

    State

    The state the contact/company is located in

    Declaration
    public string State { get; set; }
    Property Value
    Type Description
    System.String

    ZipCode

    The zip code the contact/company is located in

    Declaration
    public string ZipCode { get; set; }
    Property Value
    Type Description
    System.String

    Methods

    Finalize()

    Declaration
    protected void Finalize()
    Back to top