internal ConsoleProfile(string gamertag, Xuid onlineXuid, Xuid offlineXuid, SubscriptionTier tier, XboxLiveCountry country, IXboxConsole console, IProfileSupport profileSupport)
     : base(gamertag, onlineXuid)
 {
     this.OfflineXuid = offlineXuid;
     this.Tier = tier;
     this.Country = country;
     this.Console = console;
     this.profileSupport = profileSupport;
     //this.Friends = FriendsManagerFactory.CreateFriendsManager(this);
 }
 public ConsoleProfile CreateConsoleProfile(bool online, XboxLiveCountry country, SubscriptionTier tier, string gamertag)
 {
     return(this.profileSupport.CreateConsoleProfile(online, country, tier, gamertag));
 }
 public ConsoleProfile CreateConsoleProfile(bool online, XboxLiveCountry country, SubscriptionTier tier)
 {
     return(this.CreateConsoleProfile(online, country, tier, null));
 }
Esempio n. 4
0
 internal ConsoleProfile(string gamertag, Xuid onlineXuid, Xuid offlineXuid, SubscriptionTier tier, XboxLiveCountry country, IXboxConsole console, IProfileSupport profileSupport) : base(gamertag, onlineXuid)
 {
     this.OfflineXuid    = offlineXuid;
     this.Tier           = tier;
     this.Country        = country;
     this.Console        = console;
     this.profileSupport = profileSupport;
     //this.Friends = FriendsManagerFactory.CreateFriendsManager(this);
 }