Discuss this help topic in SecureBlackbox Forum

TElCustomSessionManager.Remove

TElCustomSessionManager     See also     


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


Removes the specified session from the list.

Declaration

[C#]
    TElSAMLSession Remove(int Index);
    TElSAMLSession Remove(string Session);

[VB.NET]
    Function Remove(ByVal Index As Integer) As TElSAMLSession
    Function Remove(ByVal Session As String) As TElSAMLSession

[Pascal]
    function Remove(Index : integer) : TElSAMLSession; virtual;
    function Remove(const Session : string) : TElSAMLSession; virtual;

[C++]
    TElSAMLSessionHandle Remove(int32_t Index);
    TElSAMLSessionHandle Remove(const std::string &Session);

[PHP]
    TElSAMLSession Remove(integer $Index)
    TElSAMLSession Remove(string $Session)

[Java]
    TElSAMLSession remove(String Session);
    TElSAMLSession remove(int Index);

Parameters

  • Index - the index of the item to be removed.
  • Session - the session to be removed.

Return value

Returns a reference to the session which has been excluded from the list.

Description

This method doesn't close the session and doesn't dispose of the session object, it only removes the corresponding item from the list.

See also:     Sessions     Add     Remove    

Discuss this help topic in SecureBlackbox Forum