Discuss this help topic in SecureBlackbox Forum

TElSAMLSignatureHandler.OnValidatorPrepared

TElSAMLSignatureHandler     See also     


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


This event is fired just before validation.

Declaration

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

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

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

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

[PHP]
    TSBSAMLCertValidatorPreparedEvent|callable|NULL get_OnValidatorPrepared()
    void set_OnValidatorPrepared(TSBSAMLCertValidatorPreparedEvent|callable|NULL $Value)
    callable TSBSAMLCertValidatorPreparedEvent(TObject $Sender, TElX509CertificateValidator &$CertValidator, TElX509Certificate $Cert)

[Java]
    TSBSAMLCertValidatorPreparedEvent getOnValidatorPrepared();
    void setOnValidatorPrepared(TSBSAMLCertValidatorPreparedEvent Value);
    TSBSAMLCertValidatorPreparedEvent.Callback OnValidatorPrepared = new TSBSAMLCertValidatorPreparedEvent.Callback() {
        public TElX509CertificateValidator TSBSAMLCertValidatorPreparedEventCallback(TObject Sender, TElX509CertificateValidator CertValidator, TElX509Certificate Cert) {
            //...
        }
    }

Parameters

  • CertValidator - the object which will perform validation.
  • Cert - the certificate to be validated.

Description

This event is fired by TElSAMLSignatureHandler when it has prepared the validator, and allows to customize validation parameters.

See also:     OnSignerPrepared     OnVerifierPrepared    

Discuss this help topic in SecureBlackbox Forum