SmtpClient.ClientCertificates プロパティ

定義

SSL (Secure Sockets Layer) 接続を確立するために使用する必要のある証明書を指定します。

public:
 property System::Security::Cryptography::X509Certificates::X509CertificateCollection ^ ClientCertificates { System::Security::Cryptography::X509Certificates::X509CertificateCollection ^ get(); };
public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get; }
member this.ClientCertificates : System.Security.Cryptography.X509Certificates.X509CertificateCollection
Public ReadOnly Property ClientCertificates As X509CertificateCollection

プロパティ値

1 つ以上のクライアント証明書を保持している X509CertificateCollection。 既定値は、構成ファイルのメール構成属性から派生します。

次のコード例では、SMTP サーバーとの SSL 接続を確立し、接続を使用して電子メールを送信します。

public static void CreateTestMessage(string server)
{
    string to = "jane@contoso.com";
    string from = "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.";
    SmtpClient client = new SmtpClient(server);
    // Credentials are necessary if the server requires the client
    // to authenticate before it will send email on the client's behalf.
    client.UseDefaultCredentials = true;
                client.EnableSsl = true;
    client.Send(message);
}

注釈

クライアント証明書は、既定では省略可能です。ただし、サーバー構成では、クライアントが最初の接続ネゴシエーションの一部として有効な証明書を提示することが必要になる場合があります。

注意

フレームワークは、作成時に SSL セッションをキャッシュし、可能であれば、キャッシュされたセッションを新しい要求に再利用しようとします。 SSL セッションを再利用しようとすると、フレームワークは の最初の ClientCertificates 要素 (存在する場合) を使用するか、 が空の場合 ClientCertificates は匿名セッションの再利用を試みます。

適用対象

こちらもご覧ください