Versions Compared

Key

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

...

Code Block
languagec#
title Method
public AuthServerResponseProvisionQRCode ProvisionQRCode(string authServerPartnerLoginName, 
                 string authServerPartnerLoginPassword, string
                 string authServerPartnerUserLoginName, 
                 string deviceID, 
                 string accountName)
WCF parameterdata typedescription
authServerPartnerLoginNamestringSurePassId account login name
authServerPartnerLoginPasswordstringSurePassId account login key
authServerPartnerUserLoginNamestringUser account login name
deviceIDstringUnique identifier for this device
accounyNamestringThe user friendly account name that will display on the mobile device for this device
Code Block
languagec#
titleSample WCF C# Method
AuthServerResponseProvisionQRCode resp = ProvisionQRCode(string authServerPartnerLoginName, string AuthServerPartnerLoginPassword, string"accountLogin",             
            "accountKey", 
            "Mandy", 
            AuthServerPartnerUserLoginName, string DeviceID, string AccountName)"142o6-ar4v3-q2b85", 
            "Prod);
Code Block
languagec#
titleSample WCF C# Repsonse
 if (resp.ErrorCode != 0)  {      
       message.Text = resp.ErrorMsg;
       return false;
 }

...