SmtpClient.ClientCertificates プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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 は匿名セッションの再利用を試みます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET