MailAddress.Address Eigenschap

Definitie

Hiermee haalt u het e-mailadres op dat is opgegeven toen dit exemplaar werd gemaakt.

public:
 property System::String ^ Address { System::String ^ get(); };
public string Address { get; }
member this.Address : string
Public ReadOnly Property Address As String

Waarde van eigenschap

Een String met het e-mailadres.

Voorbeelden

In het volgende codevoorbeeld wordt het adres voor een geadresseerde van een e-mailbericht weergegeven.

public static void CreateCopyMessage(string server)
{
    MailAddress from = new MailAddress("ben@contoso.com", "Ben Miller");
    MailAddress to = new MailAddress("jane@contoso.com", "Jane Clayton");
    MailMessage message = new MailMessage(from, to);
    // message.Subject = "Using the SmtpClient class.";
    message.Subject = "Using the SmtpClient class.";
    message.Body = @"Using this feature, you can send an email message from an application very easily.";
    // Add a carbon copy recipient.
    MailAddress copy = new MailAddress("Notification_List@contoso.com");
    message.CC.Add(copy);
    SmtpClient client = new SmtpClient(server);
    // Include credentials if the server requires them.
    client.Credentials = CredentialCache.DefaultNetworkCredentials;
    Console.WriteLine("Sending an email message to {0} by using the SMTP host {1}.",
         to.Address, client.Host);

    try
    {
        client.Send(message);
    }
    catch (Exception ex)
    {
        Console.WriteLine("Exception caught in CreateCopyMessage(): {0}",
            ex.ToString());
    }
}

Opmerkingen

De waarde die door deze eigenschap wordt geretourneerd, bevat niet de DisplayName informatie.

Van toepassing op