Fixed xml help.

This commit is contained in:
mmuffins 2018-05-28 22:45:23 +02:00
parent 3b3f3e1f23
commit b3f15721f3

View File

@ -16,6 +16,7 @@ namespace SteamStorefrontAPI
private static HttpClient client = new HttpClient();
private const string steamBaseUri = "http://store.steampowered.com/api/appdetails";
/// <summary>
/// Retrieves details for the specified application via an asynchronous operation.</summary>
/// <param name="AppId">Steam App ID.</param>
public static async Task<SteamApp> GetAsync(int AppId)
@ -23,6 +24,7 @@ namespace SteamStorefrontAPI
return await GetAsync(AppId, "", "");
}
/// <summary>
/// Retrieves details for the specified application via an asynchronous operation.</summary>
/// <param name="AppId">Steam App ID.</param>
/// <param name="CountryCode">Two letter country code to customise currency and date values.</param>