MailBeeCertificateValidationExceptionStatus Property
A set of flags which indicate the validation conditions which have not been met during validation of the server certificate.

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

Property Value

Type: CertificateValidationFlags
A bitwise combination of CertificateValidationFlags which indicate the problems with the server certificate.
Remarks
This value lists all CertificateValidationFlags the validation has failed for, regardless if AutoValidation property value listed them or not. For instance, if AutoValidation value was IsNotTimeValid and the validation process found that all the certificate fields are invalid (not just its datetime), Status property will return All, not just IsNotTimeValid. Thus, AutoValidation only controls whether the exception should be thrown if certain validation conditions are not met but it does not affect the returned value of Status property.
Examples
The example is available in ClientServerCertificates topic.
See Also