예제 #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="options"></param>
 /// <returns></returns>
 public SocialHttpResponse GetBucketizedData(SteamGetBucketizedDataOptions options)
 {
     // Some validation
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(Client.DoHttpGetRequest("/IPortal2Leaderboards_620/GetBucketizedData/v1/", options));
 }
 /// <summary>
 ///
 /// </summary>
 /// <param name="options"></param>
 /// <returns></returns>
 public SteamGetBucketizedDataResponse GetBucketizedData(SteamGetBucketizedDataOptions options)
 {
     return(SteamGetBucketizedDataResponse.ParseResponse(Raw.GetBucketizedData(options)));
 }