Discuss this help topic in SecureBlackbox Forum

TElSAMLIDPCustomAuthSource.SetIdentifier

TElSAMLIDPCustomAuthSource     See also     


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


Assigns a new name to the user with given ID.

Declaration

[C#]
    void SetIdentifier(string ID, string Format, string Value);

[VB.NET]
    Sub SetIdentifier(ByVal ID As String, ByVal Format As String, ByVal Value As String)

[Pascal]
    procedure SetIdentifier(const ID, Format, Value : string); virtual;

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

[PHP]
    void SetIdentifier(string $ID, string $Format, string $Value)

[Java]
    void setIdentifier(String ID, String Format, String Value);

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.
  • Value - the new name identifier to be assigned to the user.

Description

This method is used to assign a new name to the user with given ID.

See also:     GetIdentifier     GetSupportedIdentifierTypes    

Discuss this help topic in SecureBlackbox Forum