Discuss this help topic in SecureBlackbox Forum

TElSAMLServiceProvider.OnResponsePrepared

TElSAMLServiceProvider     See also     


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


This event is fired when the component has prepared a response.

Declaration

[C#]
    event TSBSAMLResponsePreparedEvent OnResponsePrepared;
    delegate void TSBSAMLResponsePreparedEvent(Object Sender, TElSAMLStatusResponseType Request);

[VB.NET]
    Event OnResponsePrepared As TSBSAMLResponsePreparedEvent
    Delegate Sub TSBSAMLResponsePreparedEvent(ByVal Sender As Object, ByVal Request As TElSAMLStatusResponseType)

[Pascal]
    property OnResponsePrepared : TSBSAMLResponsePreparedEvent;
    TSBSAMLResponsePreparedEvent = procedure(Sender : TObject; Request : TElSAMLStatusResponseType) of object;

[C++]
    void get_OnResponsePrepared(TSBSAMLResponsePreparedEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnResponsePrepared(TSBSAMLResponsePreparedEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBSAMLResponsePreparedEvent)(void * _ObjectData, TObjectHandle Sender, TElSAMLStatusResponseTypeHandle Request);

[PHP]
    TSBSAMLResponsePreparedEvent|callable|NULL get_OnResponsePrepared()
    void set_OnResponsePrepared(TSBSAMLResponsePreparedEvent|callable|NULL $Value)
    callable TSBSAMLResponsePreparedEvent(TObject $Sender, TElSAMLStatusResponseType $Request)

[Java]
    TSBSAMLResponsePreparedEvent getOnResponsePrepared();
    void setOnResponsePrepared(TSBSAMLResponsePreparedEvent Value);
    TSBSAMLResponsePreparedEvent.Callback OnResponsePrepared = new TSBSAMLResponsePreparedEvent.Callback() {
        public void TSBSAMLResponsePreparedEventCallback(TObject Sender, TElSAMLStatusResponseType Request) {
            //...
        }
    }

Parameters

  • Request - the response prepared by the component.

Description

This event is fired by TElSAMLServiceProvider when it has prepared a response to a request. The handler could customize the generated response before sending it.

See also:     OnRequestPrepared    

Discuss this help topic in SecureBlackbox Forum