Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.ValidateInvalidCertificates

TElX509CertificateValidator     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies whether all checks for the certificate must be done of its found invalid or blocked.

Declaration

[C#]
    bool ValidateInvalidCertificates;

[VB.NET]
    Property ValidateInvalidCertificates As Boolean

[Pascal]
    property ValidateInvalidCertificates : boolean;

[C++]
    bool get_ValidateInvalidCertificates();
    void set_ValidateInvalidCertificates(bool Value);

[PHP]
    bool get_ValidateInvalidCertificates()
    void set_ValidateInvalidCertificates(bool $Value)

[Java]
    boolean getValidateInvalidCertificates();
    void setValidateInvalidCertificates(boolean Value);

Description

     If ValidateInvalidCertificates = true and certain certificate check determines that the certificate is not valid, further checks are done anyway. This lets you create validation report for the client which should include and all checks for all certificates in the chain.
When ValidateInvalidCertificates = false and the certificate is found to be not valid, further checks of this certificate are not performed.

See also:     Validate    

Discuss this help topic in SecureBlackbox Forum