Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.CheckCRL

TElX509CertificateValidator     See also     


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


Specifies whether CRL check must be performed.

Declaration

[C#]
    bool CheckCRL;

[VB.NET]
    Property CheckCRL As Boolean

[Pascal]
    property CheckCRL : boolean;

[C++]
    bool get_CheckCRL();
    void set_CheckCRL(bool Value);

[PHP]
    bool get_CheckCRL()
    void set_CheckCRL(bool $Value)

[Java]
    boolean getCheckCRL();
    void setCheckCRL(boolean Value);

Description

    This property specifies if CRLs must be retrieved and used for validation of certificates. For each CRL Distribution point found in the certificate, the corresponding CRL is first searched in the list of known CRLs, then requested from the specified location. Before the CRL is requested, OnBeforeCRLRetrieverUse event is fired. The default value is True.

See also:     MandatoryCRLCheck     AddKnownCRLs     OnBeforeCRLRetrieverUse     OnCRLRetrieved    

Discuss this help topic in SecureBlackbox Forum