SslServerAuthenticationOptions.CertificateRevocationCheckMode 属性

定义

获取或设置证书验证的证书吊销模式。

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 中的值之一:NoCheckOnlineOffline。 默认值为 NoCheck

例外

此值包含无效枚举值。

注解

使用证书时,系统通过检查客户端证书不在吊销证书列表中来验证客户端证书未被吊销。 此检查可通过联机或根据缓存的吊销列表来执行。 将此属性设置为 NoCheck 可关闭吊销检查。

有关详细信息,请参阅使用证书

适用于