Discuss this help topic in SecureBlackbox Forum

TElSAMLIDPCustomAuthSource.Check

TElSAMLIDPCustomAuthSource     


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


Verifies the ID - auth token pair.

Declaration

[C#]
    bool Check(string ID, string AuthToken);

[VB.NET]
    Function Check(ByVal ID As String, ByVal AuthToken As String) As Boolean

[Pascal]
    function Check(const ID, AuthToken : string) : boolean; virtual;

[C++]
    bool Check(const std::string &ID, const std::string &AuthToken);

[PHP]
    bool Check(string $ID, string $AuthToken)

[Java]
    boolean check(String ID, String AuthToken);

Parameters

  • ID - the identifier for which verification should be performed.
  • AuthToken - auth token value provided by the user.

Description

    This method returns true if the provided auth token matches the one of the corresponding user kept in the internal storage.

Discuss this help topic in SecureBlackbox Forum