Discuss this help topic in SecureBlackbox Forum

TElSAMLIDPCustomAuthSource.Add

TElSAMLIDPCustomAuthSource     See also     


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


Adds user credentials to the internal storage.

Declaration

[C#]
    void Add(string ID, string AuthToken);

[VB.NET]
    Sub Add(ByVal ID As String, ByVal AuthToken As String)

[Pascal]
    procedure Add(const ID, AuthToken : string); virtual;

[C++]
    void Add(const std::string &ID, const std::string &AuthToken);

[PHP]
    void Add(string $ID, string $AuthToken)

[Java]
    void add(String ID, String AuthToken);

Parameters

  • ID - specifies user ID or username.
  • AuthToken - specifies auth token, e.g., a pasword.

Description

    Use this method to add user credentials to the internal storage of the component.

See also:     Remove    

Discuss this help topic in SecureBlackbox Forum