Discuss this help topic in SecureBlackbox Forum

TElSAMLEncryptionHandler.OnXMLEncryptorPrepared

TElSAMLEncryptionHandler     See also     


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


This event is fired when an encryptor object has been initialized.

Declaration

[C#]
    event TSBSAMLXMLEncryptorPreparedEvent OnXMLEncryptorPrepared;
    delegate void TSBSAMLXMLEncryptorPreparedEvent(Object Sender, ref TElXMLEncryptor Encryptor);

[VB.NET]
    Event OnXMLEncryptorPrepared As TSBSAMLXMLEncryptorPreparedEvent
    Delegate Sub TSBSAMLXMLEncryptorPreparedEvent(ByVal Sender As Object, ByRef Encryptor As TElXMLEncryptor)

[Pascal]
    property OnXMLEncryptorPrepared : TSBSAMLXMLEncryptorPreparedEvent;
    TSBSAMLXMLEncryptorPreparedEvent = procedure(Sender : TObject; var Encryptor : TElXMLEncryptor) of object;

[C++]
    void get_OnXMLEncryptorPrepared(TSBSAMLXMLEncryptorPreparedEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnXMLEncryptorPrepared(TSBSAMLXMLEncryptorPreparedEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBSAMLXMLEncryptorPreparedEvent)(void * _ObjectData, TObjectHandle Sender, TElXMLEncryptorHandle &Encryptor);

[PHP]
    TSBSAMLXMLEncryptorPreparedEvent|callable|NULL get_OnXMLEncryptorPrepared()
    void set_OnXMLEncryptorPrepared(TSBSAMLXMLEncryptorPreparedEvent|callable|NULL $Value)
    callable TSBSAMLXMLEncryptorPreparedEvent(TObject $Sender, TElXMLEncryptor &$Encryptor)

[Java]
    TSBSAMLXMLEncryptorPreparedEvent getOnXMLEncryptorPrepared();
    void setOnXMLEncryptorPrepared(TSBSAMLXMLEncryptorPreparedEvent Value);
    TSBSAMLXMLEncryptorPreparedEvent.Callback OnXMLEncryptorPrepared = new TSBSAMLXMLEncryptorPreparedEvent.Callback() {
        public TElXMLEncryptor TSBSAMLXMLEncryptorPreparedEventCallback(TObject Sender, TElXMLEncryptor Encryptor) {
            //...
        }
    }

Parameters

  • Encryptor - the object which will perform encryption.

Description

This event is fired by TElSAMLEncryptionHandler just before encrypting the data and allows to change the parameters of the encryptor object.

See also:     OnXMLDecryptorPrepared    

Discuss this help topic in SecureBlackbox Forum