X509PeerCertificateAuthenticationElement::RevocationMode Property

 

Gets or sets the certificate revocation mode.

Namespace:   System.ServiceModel.Configuration
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
[ConfigurationPropertyAttribute("revocationMode", DefaultValue = X509RevocationMode::Online)]
property X509RevocationMode RevocationMode {
	X509RevocationMode get();
	void set(X509RevocationMode value);
}

Property Value

Type: System.Security.Cryptography.X509Certificates::X509RevocationMode

The certificate revocation mode.

The system verifies that the peer certificate has not been revoked by looking it up in the revoked certificate list. This check can be performed either by checking online or against a cached revocation list. Revocation checking can be turned off by setting this property to NoCheck.

.NET Framework
Available since 3.0
Return to top
Show: