public LeaderboardResult(
     XboxLiveUser userContext,
     XboxLiveContextSettings xboxLiveContextSettings,
     XboxLiveAppConfiguration appConfig)
 {
     this.userContext             = userContext;
     this.xboxLiveContextSettings = xboxLiveContextSettings;
     this.appConfig = appConfig;
 }
 public LeaderboardResult(
     uint totalRowCount,
     IList <LeaderboardColumn> columns,
     IList <LeaderboardRow> rows,
     XboxLiveUser userContext,
     XboxLiveContextSettings xboxLiveContextSettings,
     XboxLiveAppConfiguration appConfig)
 {
     this.TotalRowCount           = totalRowCount;
     this.Columns                 = columns;
     this.Rows                    = rows;
     this.userContext             = userContext;
     this.xboxLiveContextSettings = xboxLiveContextSettings;
     this.appConfig               = appConfig;
 }
 internal StatsService(XboxLiveContext context)
 {
     this.config   = context.AppConfig;
     this.context  = context;
     this.settings = context.Settings;
 }
Example #4
0
 internal ProfileService(XboxLiveAppConfiguration config, XboxLiveContext context, XboxLiveContextSettings settings)
 {
     this.config   = config;
     this.context  = context;
     this.settings = settings;
 }
Example #5
0
 internal LeaderboardService(XboxLiveUser userContext, XboxLiveContextSettings xboxLiveContextSettings, XboxLiveAppConfiguration appConfig)
 {
     this.userContext             = userContext;
     this.xboxLiveContextSettings = xboxLiveContextSettings;
     this.appConfig = appConfig;
 }
 public PeopleHubService(XboxLiveContextSettings httpCallSettings, XboxLiveAppConfiguration appConfig)
 {
     this.httpCallSettings = httpCallSettings;
     this.appConfig        = appConfig;
     this.peopleHubHost    = XboxLiveEndpoint.GetEndpointForService("peoplehub", appConfig);
 }