- Add missing documentation

This commit is contained in:
Stone-Red-Code
2021-11-17 10:27:27 +01:00
parent e7e36073b2
commit aa1d07bcce
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -14,8 +14,8 @@ namespace Stone_Red_Utilities.Http
/// Reads the JSON returned from the website and converts it into an object
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="httpClient"></param>
/// <param name="requestUri"></param>
/// <param name="httpClient">The http client used for the request</param>
/// <param name="requestUri">The Uri the request is sent to/></param>
/// <returns></returns>
public static async Task<T> GetJsonObjectAsync<T>(this HttpClient httpClient, string requestUri)
{
@@ -26,8 +26,8 @@ namespace Stone_Red_Utilities.Http
/// Reads the JSON returned from the website and converts it into an object
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="httpClient"></param>
/// <param name="requestUri"></param>
/// <param name="httpClient">The http client used for the request</param>
/// <param name="requestUri">The Uri the request is sent to/></param>
/// <returns></returns>
public static async Task<T> GetJsonObjectAsync<T>(this HttpClient httpClient, Uri requestUri)
{
@@ -837,8 +837,8 @@
Reads the JSON returned from the website and converts it into an object
</summary>
<typeparam name="T"></typeparam>
<param name="httpClient"></param>
<param name="requestUri"></param>
<param name="httpClient">The http client used for the request</param>
<param name="requestUri">The Uri the request is sent to/></param>
<returns></returns>
</member>
<member name="M:Stone_Red_Utilities.Http.HttpClientExtentions.GetJsonObjectAsync``1(System.Net.Http.HttpClient,System.Uri)">
@@ -846,8 +846,8 @@
Reads the JSON returned from the website and converts it into an object
</summary>
<typeparam name="T"></typeparam>
<param name="httpClient"></param>
<param name="requestUri"></param>
<param name="httpClient">The http client used for the request</param>
<param name="requestUri">The Uri the request is sent to/></param>
<returns></returns>
</member>
<member name="T:Stone_Red_Utilities.Logging.LogConfig">