EmailAddress.Address Property
The Address property gets or sets a string value that specifies the e-mail address that is represented by this instance of the EmailAddress class.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property Address As String
Get
Set
'Usage
Dim instance As EmailAddress
Dim value As String
value = instance.Address
instance.Address = value
public string Address { get; set; }
Property Value
Type: System.String
The Address property returns a string value that specifies the e-mail address that is represented by this instance of the EmailAddress class.
Remarks
The value of the RoutingType property specifies the type of routing to use for the e-mail address that is specified by the Address property. If no value is specified for the RoutingType property, SMTP is assumed.
See Also