/// <summary>
 /// Clear the Client SessionToken which allows this Client to call API calls requiring login.
 /// A new/fresh login will be required after calling this.
 /// </summary>
 public void ForgetAllCredentials()
 {
     if (authenticationContext != null)
     {
         authenticationContext.ForgetAllCredentials();
     }
 }
 /// <summary>
 /// Clear the Client SessionToken which allows this Client to call API calls requiring login.
 /// A new/fresh login will be required after calling this.
 /// </summary>
 public void ForgetAllCredentials()
 {
     authenticationContext?.ForgetAllCredentials();
 }