Authenticate() public method

public Authenticate ( string token ) : System.Threading.Tasks.Task
token string
return System.Threading.Tasks.Task
Example #1
0
 public bool Authenticate(string userName, string password)
 {
     return(_rawClient.Authenticate(userName, password).Result);
 }
Example #2
0
 Authenticate(string userName, string password)
 {
     return(_rawClient.Authenticate(userName, password));
 }
 Authenticate(string userName, string password, string client_id, string device_token)
 {
     return(_rawClient.Authenticate(userName, password, client_id, device_token));
 }
 public (bool, ChallengeInfo) Authenticate(string userName, string password, string deviceToken, string challengeID)
 {
     return(_rawClient.Authenticate(userName, password, deviceToken, challengeID).Result);
 }