Discuss this help topic in SecureBlackbox Forum

TElSAMLServiceProvider.OnSessionDestroy

TElSAMLServiceProvider     See also     


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


This event is fired when the component is going to destroy a session.

Declaration

[C#]
    event TSBSAMLSessionEvent OnSessionDestroy;
    delegate void TSBSAMLSessionEvent(Object Sender, TElSAMLSPSession Session);

[VB.NET]
    Event OnSessionDestroy As TSBSAMLSessionEvent
    Delegate Sub TSBSAMLSessionEvent(ByVal Sender As Object, ByVal Session As TElSAMLSPSession)

[Pascal]
    property OnSessionDestroy : TSBSAMLSessionEvent;
    TSBSAMLSessionEvent = procedure(Sender : TObject; Session : TElSAMLSPSession) of object;

[C++]
    void get_OnSessionDestroy(SBSAMLServiceProvider_TSBSAMLSessionEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnSessionDestroy(SBSAMLServiceProvider_TSBSAMLSessionEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *SBSAMLServiceProvider_TSBSAMLSessionEvent)(void * _ObjectData, TObjectHandle Sender, TElSAMLSPSessionHandle Session);

[PHP]
    TSBSAMLSessionEvent|callable|NULL get_OnSessionDestroy()
    void set_OnSessionDestroy(TSBSAMLSessionEvent|callable|NULL $Value)
    callable TSBSAMLSessionEvent(TObject $Sender, TElSAMLSPSession $Session)

[Java]
    TSBSAMLSessionEvent getOnSessionDestroy();
    void setOnSessionDestroy(TSBSAMLSessionEvent Value);
    TSBSAMLSessionEvent.Callback OnSessionDestroy = new TSBSAMLSessionEvent.Callback() {
        public void TSBSAMLSessionEventCallback(TObject Sender, TElSAMLSPSession Session) {
            //...
        }
    }

Parameters

  • Session - the session to be destroyed.

Description

This event is fired by TElSAMLServiceProvider when it is going to destroy a session.

See also:     OnSessionCreate     SessionManager    

Discuss this help topic in SecureBlackbox Forum