Beispiel #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="options"></param>
 /// <returns></returns>
 public SteamGetGlobalStatsForGameResponse GetGlobalStatsForGame(SteamGetGlobalStatsForGameOptions options)
 {
     return(SteamGetGlobalStatsForGameResponse.ParseResponse(Raw.GetGlobalStatsForGame(options)));
 }
Beispiel #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="appId"></param>
 /// <param name="count"></param>
 /// <param name="name"></param>
 /// <param name="startDate"></param>
 /// <param name="endDate"></param>
 /// <returns></returns>
 public SteamGetGlobalStatsForGameResponse GetGlobalStatsForGame(uint appId, uint count, string name, uint?startDate = null, uint?endDate = null)
 {
     return(SteamGetGlobalStatsForGameResponse.ParseResponse(Raw.GetGlobalStatsForGame(appId, count, name, startDate, endDate)));
 }