Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.MandatoryOCSPCheck

TElX509CertificateValidator     See also     


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


Specifies if OCSP check is mandatory.

Declaration

[C#]
    bool MandatoryOCSPCheck;

[VB.NET]
    Property MandatoryOCSPCheck As Boolean

[Pascal]
    property MandatoryOCSPCheck : boolean;

[C++]
    bool get_MandatoryOCSPCheck();
    void set_MandatoryOCSPCheck(bool Value);

[PHP]
    bool get_MandatoryOCSPCheck()
    void set_MandatoryOCSPCheck(bool $Value)

[Java]
    boolean getMandatoryOCSPCheck();
    void setMandatoryOCSPCheck(boolean Value);

Description

    This property affects result of certificate validation when OCSP status check fails. If MandatoryOCSPCheck = true and OCSP status check can not be performed, the certificate is reported to be invalid. If MandatoryOCSPCheck = false and OCSP status check can not be performed, certificate validation continues. In both cases, when OCSP status check can not be performed, vrOCSPNotVerified flag is included to Reason status of certificate. The default value is True.

See also:     CheckOCSP    

Discuss this help topic in SecureBlackbox Forum