Discuss this help topic in SecureBlackbox Forum

TElSAMLServiceProvider.OnResponseReceived

TElSAMLServiceProvider     See also     


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


This event is fired whe a new response is received.

Declaration

[C#]
    event TSBSAMLResponseReceivedEvent OnResponseReceived;
    delegate void TSBSAMLResponseReceivedEvent(Object Sender, TElSAMLStatusResponseType Response, ref bool Accept);

[VB.NET]
    Event OnResponseReceived As TSBSAMLResponseReceivedEvent
    Delegate Sub TSBSAMLResponseReceivedEvent(ByVal Sender As Object, ByVal Response As TElSAMLStatusResponseType, ByRef Accept As Boolean)

[Pascal]
    property OnResponseReceived : TSBSAMLResponseReceivedEvent;
    TSBSAMLResponseReceivedEvent = procedure(Sender : TObject; Response : TElSAMLStatusResponseType; var Accept : boolean) of object;

[C++]
    void get_OnResponseReceived(TSBSAMLResponseReceivedEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnResponseReceived(TSBSAMLResponseReceivedEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBSAMLResponseReceivedEvent)(void * _ObjectData, TObjectHandle Sender, TElSAMLStatusResponseTypeHandle Response, int8_t &Accept);

[PHP]
    TSBSAMLResponseReceivedEvent|callable|NULL get_OnResponseReceived()
    void set_OnResponseReceived(TSBSAMLResponseReceivedEvent|callable|NULL $Value)
    callable TSBSAMLResponseReceivedEvent(TObject $Sender, TElSAMLStatusResponseType $Response, bool &$Accept)

[Java]
    TSBSAMLResponseReceivedEvent getOnResponseReceived();
    void setOnResponseReceived(TSBSAMLResponseReceivedEvent Value);
    TSBSAMLResponseReceivedEvent.Callback OnResponseReceived = new TSBSAMLResponseReceivedEvent.Callback() {
        public void TSBSAMLResponseReceivedEventCallback(TObject Sender, TElSAMLStatusResponseType Response, TSBBoolean Accept) {
            //...
        }
    }

Parameters

  • Response - the newly received response.
  • Accept - specifies whether the response should be accepted.

Description

This event is fired by TElSAMLServiceProvider when it has received a new response.

See also:     OnRequestReceived    

Discuss this help topic in SecureBlackbox Forum