共用方式為


StreamSocketInformation.ServerCertificate 屬性

定義

使用 StreamSocket建立 SSL 連線時,從伺服器取得憑證。

public:
 property Certificate ^ ServerCertificate { Certificate ^ get(); };
Certificate ServerCertificate();
public Certificate ServerCertificate { get; }
var certificate = streamSocketInformation.serverCertificate;
Public ReadOnly Property ServerCertificate As Certificate

屬性值

具有 SSL 資訊的伺服器憑證。

備註

這個屬性會取得與 StreamSocket連線時用於 SSL 連線的伺服器憑證。 此憑證是由伺服器在 SSL 連線交涉期間提供。 傳回的 Certificate 物件屬性可用來取得憑證的詳細資訊。

此屬性適用于通知使用者 SSL 連線失敗的原因。

這個屬性也可以用來強制執行比使用 傳回的 Certificate 物件的預設連線更強的安全性。 當應用程式需要比標準 SSL 交涉更強的安全性時,可以使用Certificate物件上的BuildChainAsync方法和CertificateChain物件上的其他屬性。

適用於

另請參閱