Discuss this help topic in SecureBlackbox Forum

TElPDFAdvancedPublicKeySecurityHandler.OnCertValidatorPrepared

TElPDFAdvancedPublicKeySecurityHandler     See also     


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


This event is fired before the certificate validator is prepared.

Declaration

[C#]
    event TSBPDFCertValidatorPreparedEvent OnCertValidatorPrepared;
    delegate void TSBPDFCertValidatorPreparedEvent(Object Sender, ref TElX509CertificateValidator CertValidator, TElX509Certificate Cert);

[VB.NET]
    Event OnCertValidatorPrepared As TSBPDFCertValidatorPreparedEvent
    Delegate Sub TSBPDFCertValidatorPreparedEvent(ByVal Sender As Object, ByRef CertValidator As TElX509CertificateValidator, ByVal Cert As TElX509Certificate)

[Pascal]
    property OnCertValidatorPrepared : TSBPDFCertValidatorPreparedEvent;
    TSBPDFCertValidatorPreparedEvent = procedure(Sender : TObject; var CertValidator : TElX509CertificateValidator; Cert : TElX509Certificate) of object;

[C++]
    void get_OnCertValidatorPrepared(TSBPDFCertValidatorPreparedEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnCertValidatorPrepared(TSBPDFCertValidatorPreparedEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBPDFCertValidatorPreparedEvent)(void * _ObjectData, TObjectHandle Sender, TElX509CertificateValidatorHandle &CertValidator, TElX509CertificateHandle Cert);

[PHP]
    TSBPDFCertValidatorPreparedEvent|callable|NULL get_OnCertValidatorPrepared()
    void set_OnCertValidatorPrepared(TSBPDFCertValidatorPreparedEvent|callable|NULL $Value)
    callable TSBPDFCertValidatorPreparedEvent(TObject $Sender, TElX509CertificateValidator &$CertValidator, TElX509Certificate $Cert)

[Java]
    TSBPDFCertValidatorPreparedEvent getOnCertValidatorPrepared();
    void setOnCertValidatorPrepared(TSBPDFCertValidatorPreparedEvent Value);
    TSBPDFCertValidatorPreparedEvent.Callback OnCertValidatorPrepared = new TSBPDFCertValidatorPreparedEvent.Callback() {
        public TElX509CertificateValidator TSBPDFCertValidatorPreparedEventCallback(TObject Sender, TElX509CertificateValidator CertValidator, TElX509Certificate Cert) {
            //...
        }
    }

Parameters

  • Cert - the certificate to be validated
  • CertValidator - TElX509CertificateValidator which will validate the certificate

Description

    This event is fired by TElPDFAdvancedPublicKeySecurityHandler just before it validates a certificate (and the corresponding certificate validator is prepared).

See also:     OnCertValidatorFinished    

Discuss this help topic in SecureBlackbox Forum