Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.CheckOCSP

TElX509CertificateValidator     See also     


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


Specifies whether OCSP check must be performed.

Declaration

[C#]
    bool CheckOCSP;

[VB.NET]
    Property CheckOCSP As Boolean

[Pascal]
    property CheckOCSP : boolean;

[C++]
    bool get_CheckOCSP();
    void set_CheckOCSP(bool Value);

[PHP]
    bool get_CheckOCSP()
    void set_CheckOCSP(bool $Value)

[Java]
    boolean getCheckOCSP();
    void setCheckOCSP(boolean Value);

Description

    This property specifies if OCSP must be used for validation of certificates. First the list of known OCSP responses is searched for certificate status. If no valid OCSP response is found and AuthorityInformationAccess certifiate extension is present, information in this extension is used for locating and connecting to OCSP server. Before the OCSP server is contacted, OnBeforeOCSPClientUse event is fired. The default value is True.

See also:     MandatoryOCSPCheck     AddKnownOCSPResponses     OnBeforeOCSPClientUse    

Discuss this help topic in SecureBlackbox Forum