Discuss this help topic in SecureBlackbox Forum

TElSAMLIDPCustomAuthSource.GetAttribute

TElSAMLIDPCustomAuthSource     See also     


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


Retrieves an attribute value of the given user.

Declaration

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

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

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

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

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

[Java]
    TElSAMLAttributeElement getAttribute(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 which value needs to be retrieved.

Description

This method is used to retrieve the value of the specific attribute of the specified user.

See also:     SetAttribute    

Discuss this help topic in SecureBlackbox Forum