Esempio n. 1
0
 public XmlRpcAuthResponse(string message, int?success)
 {
     this.worldsComparer         = new WorldsComparer();
     this.mResponse              = new XmlRpcRespStruct();
     this.mResponse.mSuccessCode = success;
     this.mResponse.mMessage     = message;
 }
Esempio n. 2
0
 public XmlRpcAuthResponse(string message, int?success, string guid, string username, string email, string pass, string sessionid, string ip, string platform, object rawcards, int?crowns, int?cardpoints, int?premiumcards, object rawoffers, object rawpacks, object rawsharers, object rawtokens, int?l1, int?l2, int?l3, int?l4, int?l5, int?l6, int?l7, int?l8, int?l9, int?l10, int?total, int?left, int?current, int?premiumbox, object shields, object worlds, object products, string specialURL)
 {
     this.worldsComparer = new WorldsComparer();
     this.mResponse      = new XmlRpcRespStruct();
     this.mResponse.mVeteranCurrentLevel = current;
     this.mResponse.mVeteranLv1          = l1;
     this.mResponse.mVeteranLv2          = l2;
     this.mResponse.mVeteranLv3          = l3;
     this.mResponse.mVeteranLv4          = l4;
     this.mResponse.mVeteranLv5          = l5;
     this.mResponse.mVeteranLv6          = l6;
     this.mResponse.mVeteranLv7          = l7;
     this.mResponse.mVeteranLv8          = l8;
     this.mResponse.mVeteranLv9          = l9;
     this.mResponse.mVeteranLv10         = l10;
     this.mResponse.mVeteranSecondsLeft  = left;
     this.mResponse.mVeteranTotalSeconds = total;
     this.mResponse.mMessage             = message;
     this.mResponse.mSuccessCode         = success;
     this.mResponse.mUserGUID            = guid;
     this.mResponse.mUsername            = username;
     this.mResponse.mEmailAddress        = email;
     this.mResponse.mPassword            = pass;
     this.mResponse.mSessionID           = sessionid;
     this.mResponse.mIPAddress           = ip;
     this.mResponse.mPlatform            = platform;
     this.mResponse.mRawCards            = rawcards;
     this.mResponse.mCrowns       = crowns;
     this.mResponse.mCardpoints   = cardpoints;
     this.mResponse.mPremiumCards = premiumcards;
     this.mResponse.mRawOffers    = rawoffers;
     this.mResponse.mRawPacks     = rawpacks;
     this.mResponse.mRawSharers   = rawsharers;
     this.mResponse.mRawTokens    = rawtokens;
     this.mResponse.mPremiumBox   = premiumbox;
     this.mResponse.mRawShields   = shields;
     this.mResponse.mRawWorlds    = worlds;
     this.mResponse.mRawProducts  = products;
     this.mResponse.mSpecialURL   = specialURL;
 }
Esempio n. 3
0
 public XmlRpcAuthResponse(string message, int?success, string guid, string username, string email, string pass, string sessionid, string ip, string platform, object rawcards, int?crowns, int?cardpoints, int?premiumcards, object rawoffers, object rawpacks, object rawsharers, object rawtokens)
 {
     this.worldsComparer          = new WorldsComparer();
     this.mResponse               = new XmlRpcRespStruct();
     this.mResponse.mMessage      = message;
     this.mResponse.mSuccessCode  = success;
     this.mResponse.mUserGUID     = guid;
     this.mResponse.mUsername     = username;
     this.mResponse.mEmailAddress = email;
     this.mResponse.mPassword     = pass;
     this.mResponse.mSessionID    = sessionid;
     this.mResponse.mIPAddress    = ip;
     this.mResponse.mPlatform     = platform;
     this.mResponse.mRawCards     = rawcards;
     this.mResponse.mCrowns       = crowns;
     this.mResponse.mCardpoints   = cardpoints;
     this.mResponse.mPremiumCards = premiumcards;
     this.mResponse.mRawOffers    = rawoffers;
     this.mResponse.mRawPacks     = rawpacks;
     this.mResponse.mRawSharers   = rawsharers;
     this.mResponse.mRawTokens    = rawtokens;
 }
Esempio n. 4
0
 public XmlRpcAuthResponse()
 {
     this.worldsComparer = new WorldsComparer();
     this.mResponse      = new XmlRpcRespStruct();
 }