/// <summary>
 ///
 /// </summary>
 /// <param name="options"></param>
 /// <returns></returns>
 public SocialHttpResponse GetOwnedGames(SteamGetOwnedGamesOptions options)
 {
     // Some validation
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(Client.DoHttpGetRequest("/IPlayerService/GetOwnedGames/v1/", options));
 }
Exemplo n.º 2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="options"></param>
 /// <returns></returns>
 public SteamGetOwnedGamesResponse GetOwnedGames(SteamGetOwnedGamesOptions options)
 {
     return(SteamGetOwnedGamesResponse.ParseResponse(Raw.GetOwnedGames(options)));
 }