MailAddress.Host プロパティ

定義

このインスタンスの作成時に指定されたアドレスのホスト部分を取得します。

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

プロパティ値

User プロパティの電子メールを受け入れるホスト コンピューターの名前を含むString

次のコード例では、電子メール メッセージの送信先を表示します。

public static void CreateTestMessage3()
{
    MailAddress to = new MailAddress("jane@contoso.com");
    MailAddress from = new MailAddress("ben@contoso.com");
    MailMessage message = new MailMessage(from, to);
    message.Subject = "Using the new SMTP client.";
    message.Body = @"Using this new feature, you can send an email message from an application very easily.";
    // Use the application or machine configuration to get the
    // host, port, and credentials.
    SmtpClient client = new SmtpClient();
    Console.WriteLine("Sending an email message to {0} at {1} by using the SMTP host={2}.",
        to.User, to.Host, client.Host);
    client.Send(message);
}

注釈

一般的な電子メール アドレスでは、ホスト文字列には、"@" 記号に続くすべての情報が含まれます。 たとえば、 "tsmith@contoso.com"では、ホストは "contoso.com"

適用対象