StreamSocketInformation.ServerIntermediateCertificates プロパティ

定義

StreamSocket との SSL 接続を確立するときに、SSL ネゴシエーション中にサーバーによって送信される中間証明書を取得します。

public:
 property IVectorView<Certificate ^> ^ ServerIntermediateCertificates { IVectorView<Certificate ^> ^ get(); };
IVectorView<Certificate> ServerIntermediateCertificates();
public IReadOnlyList<Certificate> ServerIntermediateCertificates { get; }
var iVectorView = streamSocketInformation.serverIntermediateCertificates;
Public ReadOnly Property ServerIntermediateCertificates As IReadOnlyList(Of Certificate)

プロパティ値

SSL ネゴシエーション中にサーバーによって送信される証明書のセット。

注釈

このプロパティは、 StreamSocket との SSL 接続を確立するときに使用される中間サーバー証明書を返します。 これらの証明書は、SSL 接続ネゴシエーション中にサーバーによって提供されます。 返されたベクター内の Certificate オブジェクトのプロパティを使用して、証明書の詳細情報を取得できます。

このプロパティは、返される Certificate オブジェクトを使用して、既定の接続よりも強力なセキュリティを適用するためにも使用できます。 CertificateChain オブジェクトのBuildChainAsync メソッドとその他のプロパティは、アプリで標準の SSL ネゴシエーションよりも強力なセキュリティが必要な場合に使用できます。

適用対象

こちらもご覧ください