Discuss this help topic in SecureBlackbox Forum

TElSAMLCustomOneTimeUseCache.Add

TElSAMLCustomOneTimeUseCache     


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


Adds a new item to the internal storage.

Declaration

[C#]
    int Add(TElSAMLAssertionElement Assertion);

[VB.NET]
    Function Add(ByVal Assertion As TElSAMLAssertionElement) As Integer

[Pascal]
    function Add(Assertion : TElSAMLAssertionElement) : integer; virtual;

[C++]
    int32_t Add(TElSAMLAssertionElement &Assertion);
    int32_t Add(TElSAMLAssertionElement *Assertion);

[PHP]
    integer Add(TElSAMLAssertionElement $Assertion)

[Java]
    int add(TElSAMLAssertionElement Assertion);

Parameters

  • Assertion - the assertion to be cached.

Return value

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

Description

Use this method to cache new items.

Discuss this help topic in SecureBlackbox Forum