From b3f15721f39f44b06589db63b2a14179265d13b3 Mon Sep 17 00:00:00 2001 From: mmuffins Date: Mon, 28 May 2018 22:45:23 +0200 Subject: [PATCH] Fixed xml help. --- SteamStorefrontAPI/Endpoints/AppDetails.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SteamStorefrontAPI/Endpoints/AppDetails.cs b/SteamStorefrontAPI/Endpoints/AppDetails.cs index fb3bbab..2f361d5 100644 --- a/SteamStorefrontAPI/Endpoints/AppDetails.cs +++ b/SteamStorefrontAPI/Endpoints/AppDetails.cs @@ -16,6 +16,7 @@ namespace SteamStorefrontAPI private static HttpClient client = new HttpClient(); private const string steamBaseUri = "http://store.steampowered.com/api/appdetails"; + /// /// Retrieves details for the specified application via an asynchronous operation. /// Steam App ID. public static async Task GetAsync(int AppId) @@ -23,6 +24,7 @@ namespace SteamStorefrontAPI return await GetAsync(AppId, "", ""); } + /// /// Retrieves details for the specified application via an asynchronous operation. /// Steam App ID. /// Two letter country code to customise currency and date values.