MailBeeCertificateValidationExceptionStatus Property |
A set of flags which indicate the validation conditions which have not been met during validation
of the server certificate.
Namespace: MailBee.SecurityAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public CertificateValidationFlags Status { get; }
Public ReadOnly Property Status As CertificateValidationFlags
Get
Property Value
Type:
CertificateValidationFlagsA 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 See Also