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 可关闭吊销检查。
有关详细信息,请参阅使用证书。