共用方式為


MessageWebSocketInformation.ServerCertificate 屬性

定義

取得伺服器在建立安全 WebSocket 連線時所提供的憑證。

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

屬性值

伺服器憑證。

實作

Windows 需求

裝置系列
Windows 10 Anniversary Edition (已於 10.0.14393.0 引進)
API contract
Windows.Foundation.UniversalApiContract (已於 v3.0 引進)

備註

透過此屬性取得伺服器憑證時,已建立 SSL 連線。

如果您想要在連線程式期間檢查伺服器憑證以執行自訂驗證,您應該註冊 MessageWebSocket.ServerCustomValidationRequested 事件的處理常式,並在該處理常式中執行自訂伺服器驗證。

例如,如果您只想在伺服器憑證驗證 (時忽略某些錯誤類別,您會使用自我簽署憑證,而且想要忽略此條件所造成的驗證錯誤,) 您可以使用 IgnorableServerCertificateErrors 屬性來忽略相關的錯誤類別。

適用於