Example #1
0
 /// <summary>
 /// Get the Authentication token for the Dashboard User.
 /// </summary>
 /// <param name="UserName">Dashboard UserName</param>
 /// <param name="Password">Password</param>
 /// <returns>Authentication token</returns>
 public async Task <string> GetDashboardAuthToken(string UserName, string Password)
 {
     return(await _authenticationClient.GetDashboardAuthToken(UserName, Password));
 }