From d2a504bfb34574092f11d93d9f631fe3499fd21d Mon Sep 17 00:00:00 2001 From: Dara Oladapo Date: Mon, 30 Nov 2020 13:10:22 +0000 Subject: [PATCH 1/4] tabset --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ad49d17..3385ca7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # HttpClientServiceHelper + .NET HTTP Client Service library. ## Stats and Reports @@ -6,10 +7,7 @@ ![GitHub contributors](https://img.shields.io/github/contributors-anon/daraoladapo/HttpClientServiceHelper) [![Build Status](https://dev.azure.com/daraoladapo/HttpClientServiceHelper/_apis/build/status/HttpClientServiceHelper?branchName=master)](https://dev.azure.com/daraoladapo/HttpClientServiceHelper/_build/latest?definitionId=3&branchName=master) ![Nuget](https://img.shields.io/nuget/dt/HttpClientServiceHelper?label=Total%20NUGET%20Downloads) - ![GitHub](https://img.shields.io/github/license/daraoladapo/httpclientservicehelper) - - - + ![GitHub](https://img.shields.io/github/license/daraoladapo/httpclientservicehelper) Use this library to quickly bootstrap your HttpClient Service calls. It uses the System.Net.Http library. @@ -35,3 +33,13 @@ Copy the following into the .csproj file of your project (using version 1.0.0 as Get the NUGET Package [here](https://www.nuget.org/packages/HttpClientServiceHelper). Happy Usage! + +## Tabs {.tabset .tabset-fade} + +### MacOS + +MacOS content + +### Windows + +Windows Content From 01a054f346f15eab23679f14f24ce548eeaa50c6 Mon Sep 17 00:00:00 2001 From: Dara Oladapo Date: Fri, 4 Dec 2020 23:33:51 +0000 Subject: [PATCH 2/4] modifying --- README.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/README.md b/README.md index 3385ca7..08e38e6 100644 --- a/README.md +++ b/README.md @@ -34,12 +34,3 @@ Get the NUGET Package [here](https://www.nuget.org/packages/HttpClientServiceHel Happy Usage! -## Tabs {.tabset .tabset-fade} - -### MacOS - -MacOS content - -### Windows - -Windows Content From 86c77c3252c1d5c2eb3732ef1da24276f9f7d601 Mon Sep 17 00:00:00 2001 From: Dara Oladapo Date: Fri, 4 Dec 2020 23:35:59 +0000 Subject: [PATCH 3/4] modifying --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 08e38e6..2c6c03c 100644 --- a/README.md +++ b/README.md @@ -32,5 +32,4 @@ Copy the following into the .csproj file of your project (using version 1.0.0 as Get the NUGET Package [here](https://www.nuget.org/packages/HttpClientServiceHelper). -Happy Usage! - +Happy Usage! \ No newline at end of file From f7f0637b4967b83690c6a230e326690f2020621b Mon Sep 17 00:00:00 2001 From: Dara Oladapo Date: Fri, 3 Sep 2021 10:09:57 +0100 Subject: [PATCH 4/4] setting out to-dos in their regions --- src/HttpClientServiceHelper/Get.cs | 3 ++- src/HttpClientServiceHelper/HttpClientServiceHelper.csproj | 2 +- src/HttpClientServiceHelper/Patch.cs | 3 ++- src/HttpClientServiceHelper/Post.cs | 3 ++- src/HttpClientServiceHelper/Put.cs | 3 ++- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/HttpClientServiceHelper/Get.cs b/src/HttpClientServiceHelper/Get.cs index 0c2ec49..bedea05 100644 --- a/src/HttpClientServiceHelper/Get.cs +++ b/src/HttpClientServiceHelper/Get.cs @@ -13,6 +13,7 @@ namespace HttpClientServiceHelper /// public partial class HttpClientHelper { + #region TODO /// /// Triggers a GET request to the specified route and retrieves the result as a generic object response. /// @@ -183,7 +184,7 @@ public partial class HttpClientHelper // } // } //} - + #endregion /// /// Triggers a GET request to the specified route and retrieves the result as an HTTP Response Message. /// diff --git a/src/HttpClientServiceHelper/HttpClientServiceHelper.csproj b/src/HttpClientServiceHelper/HttpClientServiceHelper.csproj index 079f3a3..3d89139 100644 --- a/src/HttpClientServiceHelper/HttpClientServiceHelper.csproj +++ b/src/HttpClientServiceHelper/HttpClientServiceHelper.csproj @@ -32,7 +32,7 @@ It returns an HttpResponseMessage/String Response depending on the method called - + diff --git a/src/HttpClientServiceHelper/Patch.cs b/src/HttpClientServiceHelper/Patch.cs index a7d4dce..d942248 100644 --- a/src/HttpClientServiceHelper/Patch.cs +++ b/src/HttpClientServiceHelper/Patch.cs @@ -178,7 +178,7 @@ public static async Task PatchAndGetResponseAsStringAsync(string Route, return await httpResponse.Content.ReadAsStringAsync(); } } - + #region TODO /// /// Triggers a Patch request to the specified route and retrieves the result as an HTTP Response Message. /// @@ -366,5 +366,6 @@ public static async Task PatchAndGetResponseAsStringAsync(string Route, // } // } //} + #endregion } } diff --git a/src/HttpClientServiceHelper/Post.cs b/src/HttpClientServiceHelper/Post.cs index 8074220..e8c0593 100644 --- a/src/HttpClientServiceHelper/Post.cs +++ b/src/HttpClientServiceHelper/Post.cs @@ -178,7 +178,7 @@ public static async Task PostAndGetResponseAsStringAsync(string Route, o return await httpResponse.Content.ReadAsStringAsync(); } } - + #region TODO /// /// Triggers a Post request to the specified route and retrieves the result as an HTTP Response Message. /// @@ -366,5 +366,6 @@ public static async Task PostAndGetResponseAsStringAsync(string Route, o // } // } //} + #endregion } } diff --git a/src/HttpClientServiceHelper/Put.cs b/src/HttpClientServiceHelper/Put.cs index 585aa32..720b682 100644 --- a/src/HttpClientServiceHelper/Put.cs +++ b/src/HttpClientServiceHelper/Put.cs @@ -178,7 +178,7 @@ public static async Task PutAndGetResponseAsStringAsync(string Route, ob return await httpResponse.Content.ReadAsStringAsync(); } } - + #region TODO /// /// Triggers a PUT request to the specified route and retrieves the result as an HTTP Response Message. /// @@ -366,5 +366,6 @@ public static async Task PutAndGetResponseAsStringAsync(string Route, ob // } // } //} + #endregion } }