Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagec#
titleValidateU2FUser Method
AuthServerU2FResponse ValidateU2FUser(string authServerPartnerLoginName, 
                      string authServerPartnerLoginPassword, 
                      string authServerPartnerUserLoginName, 
                      string authServerPartnerUserPassword);

...

Code Block
languagec#
titleSample WCF C# Method
  AuthServerU2FResponse resp = ValidateU2FUser("accountKey", 
           "accountLogin", 
           "accountKey", 
           "user password");
Code Block
languagec#
titleSample WCF C# Repsonse
 if (resp.ErrorCode != 0)  {
       message.Text = resp.ErrorMsg;
       return false;
 }

...