/// <summary>
 ///
 /// </summary>
 /// <param name="request"></param>
 /// <returns></returns>
 public static async Task <SsoActionResult> ValidateSsoAsyncStatic(SsoRequest request)
 {
     using (var httpService = new AuthHttpService())
     {
         return(await httpService.HttpPostAsync <SsoRequest, SsoActionResult>($"ssoaccess", request));
     }
 }
 /// <summary>
 /// When calling this instance method, the caller must dispose of the AuthHttpServiceBase class object in a using statement or call Dispose direclty.
 /// </summary>
 /// <param name="request"></param>
 /// <returns></returns>
 public async Task <SsoActionResult> ValidateSsoAsync(SsoRequest request)
 {
     return(await HttpPostAsync <SsoRequest, SsoActionResult>($"ssoaccess", request));
 }