Discuss this help topic in SecureBlackbox Forum

TElCustomSessionManager.Add

TElCustomSessionManager     See also     


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


Adds a new session to the list.

Declaration

[C#]
    int Add(TElSAMLSession Session);

[VB.NET]
    Function Add(ByVal Session As TElSAMLSession) As Integer

[Pascal]
    function Add(Session : TElSAMLSession) : integer; virtual;

[C++]
    int32_t Add(TElSAMLSession &Session);
    int32_t Add(TElSAMLSession *Session);

[PHP]
    integer Add(TElSAMLSession $Session)

[Java]
    int add(TElSAMLSession Session);

Parameters

  • Session - the session object to be added to the list.

Return value

Returns the index of the newly added item in the list on success, and -1 on failure.

Description

Use this method to add a new session to the list.

See also:     Sessions     Add     Remove    

Discuss this help topic in SecureBlackbox Forum