SslServerAuthenticationOptions.CertificateRevocationCheckMode 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定憑證驗證的證書吊銷模式。
public:
property System::Security::Cryptography::X509Certificates::X509RevocationMode CertificateRevocationCheckMode { System::Security::Cryptography::X509Certificates::X509RevocationMode get(); void set(System::Security::Cryptography::X509Certificates::X509RevocationMode value); };
public System.Security.Cryptography.X509Certificates.X509RevocationMode CertificateRevocationCheckMode { get; set; }
member this.CertificateRevocationCheckMode : System.Security.Cryptography.X509Certificates.X509RevocationMode with get, set
Public Property CertificateRevocationCheckMode As X509RevocationMode
屬性值
X509RevocationMode 中的其中一個值:NoCheck
、Online
或 Offline
。 預設為 NoCheck
。
例外狀況
此值包含無效的列舉值。
備註
使用憑證時,系統會檢查用戶端憑證不在撤銷憑證清單中,驗證用戶端憑證尚未遭到撤銷。 這項檢查可以藉由線上檢查或是核對快取的撤銷清單來執行。 將此屬性設定為 NoCheck 可以關閉撤銷檢查。
如需詳細資訊,請參閱使用憑證。