Added additional examples.
This commit is contained in:
parent
89405d6bed
commit
cc650d402b
@ -24,6 +24,9 @@ namespace SteamStorefrontConsole
|
|||||||
// Get details for SteamApp with ID 443790 for region US
|
// Get details for SteamApp with ID 443790 for region US
|
||||||
SteamApp steamApp2 = await AppDetails.GetAsync(322330, "US");
|
SteamApp steamApp2 = await AppDetails.GetAsync(322330, "US");
|
||||||
|
|
||||||
|
// Get details for SteamApp with ID 443790 for region US with strings localized in german
|
||||||
|
SteamApp steamApp3 = await AppDetails.GetAsync(322330, "US", "german");
|
||||||
|
|
||||||
// Get details for Package with ID 68179 for region
|
// Get details for Package with ID 68179 for region
|
||||||
PackageInfo package1 = await PackageDetails.GetAsync(68179);
|
PackageInfo package1 = await PackageDetails.GetAsync(68179);
|
||||||
|
|
||||||
@ -36,6 +39,9 @@ namespace SteamStorefrontConsole
|
|||||||
// Get a list of featured games for region DE
|
// Get a list of featured games for region DE
|
||||||
FeaturedApps featured2 = await Featured.GetAsync("DE");
|
FeaturedApps featured2 = await Featured.GetAsync("DE");
|
||||||
|
|
||||||
|
// Get a list of featured games for region DE localized in english
|
||||||
|
FeaturedApps featured3 = await Featured.GetAsync("DE", "english");
|
||||||
|
|
||||||
// Get a list of featured games grouped by category
|
// Get a list of featured games grouped by category
|
||||||
List<FeaturedCategory> featuredCategories = await FeaturedCategories.GetAsync();
|
List<FeaturedCategory> featuredCategories = await FeaturedCategories.GetAsync();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user