MailAddress.ToString Method ()

 

Returns a string representation of this instance.

Namespace:   System.Net.Mail
Assembly:  System (in System.dll)

Public Overrides Function ToString As String

Return Value

Type: System.String

A String that contains the contents of this MailAddress.

The string returned by this method is not necessarily identical to the string specified when the instance was created. If the DisplayName property is not null and not equal to String.Empty (""), ToString returns a string composed using the following syntax:

DisplayName <User@Host>

If DisplayName is null or is equal to String.Empty, ToString returns the value of the Address property.

The following code example displays the destination of an e-mail message.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: