共用方式為


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 物件的預設連線更強的安全性。 當應用程式需要比標準 SSL 交涉更高的安全性時,可以使用CertificateChain物件上的 Certificate 物件和方法上的BuildChainAsync方法和其他屬性。

適用於

另請參閱