ClientServerCertificatesCheckCertificateRevocation Property
Gets or sets whether the certificate revocation list is checked during authentication.

Namespace: MailBee.Security
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public bool CheckCertificateRevocation { get; set; }

Property Value

Type: Boolean
If true, the certificate revocation list is checked during authentication; otherwise, false. The default value is false.
Remarks
MailBee passes this value to AuthenticateAsClient(String, X509CertificateCollection, SslProtocols, Boolean) method as checkCertificateRevocation parameter. Enabling this check can improve security but it comes at a cost of significant delays during authentication against some servers (up to 15 seconds).
See Also