...
Code Block | ||||
---|---|---|---|---|
| ||||
AuthServerU2FResponse ValidateU2FUser(string authServerPartnerLoginName, string authServerPartnerLoginPassword, string authServerPartnerUserLoginName, string authServerPartnerUserPassword); |
...
Code Block | ||||
---|---|---|---|---|
| ||||
AuthServerU2FResponse resp = ValidateU2FUser("accountKey", "accountLogin", "accountKey", "user password"); |
Code Block | ||||
---|---|---|---|---|
| ||||
if (resp.ErrorCode != 0) { message.Text = resp.ErrorMsg; return false; } |
...