Discuss this help topic in SecureBlackbox Forum

TElSAMLIDPCustomAuthSource.SetAttribute

TElSAMLIDPCustomAuthSource     See also     


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


Assigns given attribute to the specified user.

Declaration

[C#]
    bool SetAttribute(string ID, string Format, TElSAMLAttributeElement Attribute);

[VB.NET]
    Function SetAttribute(ByVal ID As String, ByVal Format As String, ByVal Attribute As TElSAMLAttributeElement) As Boolean

[Pascal]
    function SetAttribute(const ID, Format : string; Attribute : TElSAMLAttributeElement) : boolean; virtual;

[C++]
    bool SetAttribute(const std::string &ID, const std::string &Format, TElSAMLAttributeElement &Attribute);
    bool SetAttribute(const std::string &ID, const std::string &Format, TElSAMLAttributeElement *Attribute);

[PHP]
    bool SetAttribute(string $ID, string $Format, TElSAMLAttributeElement $Attribute)

[Java]
    boolean setAttribute(String ID, String Format, TElSAMLAttributeElement Attribute);

Parameters

  • ID - the unique identifier of the user.
  • Format - specifies the attribute format as defined in SAML Core specification.
  • Attribute - the attribute to be assigned to the user.

Description

This method is used to change the value of the specified user's attribute.

See also:     GetAttribute    

Discuss this help topic in SecureBlackbox Forum