Discuss this help topic in SecureBlackbox Forum

TElSAMLAttributeStatementElement.AddAttribute

TElSAMLAttributeStatementElement     See also     


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


Adds a new attribute to the list.

Declaration

[C#]
    int AddAttribute(TElSAMLAttributeType Attr);

[VB.NET]
    Function AddAttribute(ByVal Attr As TElSAMLAttributeType) As Integer

[Pascal]
    function AddAttribute(Attr : TElSAMLAttributeType) : integer;

[C++]
    int32_t AddAttribute(TElSAMLAttributeType &Attr);
    int32_t AddAttribute(TElSAMLAttributeType *Attr);

[PHP]
    integer AddAttribute(TElSAMLAttributeType $Attr)

[Java]
    int addAttribute(TElSAMLAttributeType Attr);

Parameters

  • Attr - the attribute to be added to the list.

Return value

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

Description

    Use this method to add a new item to the list of attributes.

See also:     Attributes     RemoveAttribute    

Discuss this help topic in SecureBlackbox Forum