Discuss this help topic in SecureBlackbox Forum

TElSAMLServiceProvider.OnLogout

TElSAMLServiceProvider     See also     


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


This event is fired when a logout request has been sent.

Declaration

[C#]
    event TSBSAMLLogoutEvent OnLogout;
    delegate void TSBSAMLLogoutEvent(Object Sender, TElSAMLSPSession Session, TElHTTPServerResponseParams ResponseParams);

[VB.NET]
    Event OnLogout As TSBSAMLLogoutEvent
    Delegate Sub TSBSAMLLogoutEvent(ByVal Sender As Object, ByVal Session As TElSAMLSPSession, ByVal ResponseParams As TElHTTPServerResponseParams)

[Pascal]
    property OnLogout : TSBSAMLLogoutEvent;
    TSBSAMLLogoutEvent = procedure(Sender : TObject; Session : TElSAMLSPSession; ResponseParams : TElHTTPServerResponseParams) of object;

[C++]
    void get_OnLogout(SBSAMLServiceProvider_TSBSAMLLogoutEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnLogout(SBSAMLServiceProvider_TSBSAMLLogoutEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *SBSAMLServiceProvider_TSBSAMLLogoutEvent)(void * _ObjectData, TObjectHandle Sender, TElSAMLSPSessionHandle Session, TElHTTPServerResponseParamsHandle ResponseParams);

[PHP]
    TSBSAMLLogoutEvent|callable|NULL get_OnLogout()
    void set_OnLogout(TSBSAMLLogoutEvent|callable|NULL $Value)
    callable TSBSAMLLogoutEvent(TObject $Sender, TElSAMLSPSession $Session, TElHTTPServerResponseParams $ResponseParams)

[Java]
    TSBSAMLLogoutEvent getOnLogout();
    void setOnLogout(TSBSAMLLogoutEvent Value);
    TSBSAMLLogoutEvent.Callback OnLogout = new TSBSAMLLogoutEvent.Callback() {
        public void TSBSAMLLogoutEventCallback(TObject Sender, TElSAMLSPSession Session, TElHTTPServerResponseParams ResponseParams) {
            //...
        }
    }

Parameters

  • Session - the session within which the logout request has been received.
  • ResponseParams - allows to specify IdP response params.

Description

This event is fired by TElSAMLServiceProvider when it has sent a logout request.

See also:     RedirectOnLogoutPage     RedirectToSuppliedResource    

Discuss this help topic in SecureBlackbox Forum