Discuss this help topic in SecureBlackbox Forum

TElSAMLIDPCustomAuthSource.GetIdentifier

TElSAMLIDPCustomAuthSource     See also     


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


Returns name identifier for the given user.

Declaration

[C#]
    string GetIdentifier(string ID, string Format);

[VB.NET]
    Function GetIdentifier(ByVal ID As String, ByVal Format As String) As String

[Pascal]
    function GetIdentifier(const ID, Format : string) : string; virtual;

[C++]
    void GetIdentifier(const std::string &ID, const std::string &Format, std::string &OutResult);

[PHP]
    string GetIdentifier(string $ID, string $Format)

[Java]
    String getIdentifier(String ID, String Format);

Parameters

  • ID - the unique identifier of the user.
  • Format - specifies the name identifier format as defined in SAML Core specification. Use GetSupportedIdentifierTypes to check the supported formats.

Description

This method returns the name identifier given user's ID.

See also:     SetIdentifier     GetSupportedIdentifierTypes    

Discuss this help topic in SecureBlackbox Forum