Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.MandatoryCRLCheck

TElX509CertificateValidator     See also     


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


Specifies if CRL check is mandatory.

Declaration

[C#]
    bool MandatoryCRLCheck;

[VB.NET]
    Property MandatoryCRLCheck As Boolean

[Pascal]
    property MandatoryCRLCheck : boolean;

[C++]
    bool get_MandatoryCRLCheck();
    void set_MandatoryCRLCheck(bool Value);

[PHP]
    bool get_MandatoryCRLCheck()
    void set_MandatoryCRLCheck(bool $Value)

[Java]
    boolean getMandatoryCRLCheck();
    void setMandatoryCRLCheck(boolean Value);

Description

    This property affects result of certificate validation when CRL retrieval fails. If MandatoryCRLCheck = true and the CRL can not be retrieved, the certificate is reported to be invalid. If MandatoryCRLCheck = false and the CRL can not be retrieved, certificate validation continues. In both cases, when the CRL can not be retrieved, vrCRLNotVerified flag is included to Reason status of certificate. The default value is True.

See also:     CheckCRL     OnCRLNeeded    

Discuss this help topic in SecureBlackbox Forum