Discuss this help topic in SecureBlackbox Forum

TElSAMLResponseElement.AddAssertion

TElSAMLResponseElement     See also     


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


Adds a new item to the list.

Declaration

[C#]
    int AddAssertion(TElSAMLAssertionType Assertion);

[VB.NET]
    Function AddAssertion(ByVal Assertion As TElSAMLAssertionType) As Integer

[Pascal]
    function AddAssertion(Assertion : TElSAMLAssertionType) : integer;

[C++]
    int32_t AddAssertion(TElSAMLAssertionType &Assertion);
    int32_t AddAssertion(TElSAMLAssertionType *Assertion);

[PHP]
    integer AddAssertion(TElSAMLAssertionType $Assertion)

[Java]
    int addAssertion(TElSAMLAssertionType Assertion);

Parameters

  • Assertion - the assertion element to be added to the list.

Return value

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

Description

Use this method to ad a new assertion to the list.

See also:     Assertions     RemoveAssertion    

Discuss this help topic in SecureBlackbox Forum