MailAddress.User プロパティ

定義

このインスタンスが作成されたときに指定されたアドレスからユーザー情報を取得します。

public string User { get; }

プロパティ値

String のユーザー名の部分を格納している Address

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

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"、ユーザーは です "tsmith"

適用対象

製品 バージョン
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1