Esempio n. 1
0
 internal Friend(string gamertag, Xuid onlineXuid, FriendRequestStatus requestStatus, FriendStatus friendStatus, string richPresence, uint titleId) : base(gamertag, onlineXuid)
 {
     this.RequestStatus = requestStatus;
     this.FriendState   = friendStatus;
     this.RichPresence  = richPresence;
     this.TitleId       = titleId;
 }
Esempio n. 2
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);
 }
Esempio n. 3
0
 internal PartyMember(string gamertag, Xuid onlineXuid, bool isLocal, Microsoft.Test.Xbox.Profiles.UserIndex userIndex) : base(gamertag, onlineXuid)
 {
     this.IsLocal   = isLocal;
     this.UserIndex = userIndex;
 }
Esempio n. 4
0
 public Gamer(string gamertag, Xuid onlineXuid)
 {
     this.Gamertag   = gamertag;
     this.OnlineXuid = onlineXuid;
 }