Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SslStream::CheckCertRevocationStatus Property

 

Gets a Boolean value that indicates whether the certificate revocation list is checked during the certificate validation process.

Namespace:   System.Net.Security
Assembly:  System (in System.dll)

public:
property bool CheckCertRevocationStatus {
	virtual bool get();
}

Property Value

Type: System::Boolean

true if the certificate revocation list is checked; otherwise, false.

The certificate revocation list contains certificates that have been revoked by the issuer. Checking the list negatively impacts performance but improves application security.

The following code example demonstrates displaying the value of this property.

static void DisplayStreamProperties( SslStream^ stream )
{
   Console::WriteLine( L"Can read: {0}, write {1}", stream->CanRead, stream->CanWrite );
   Console::WriteLine( L"Can timeout: {0}", stream->CanTimeout );
}


.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft