diff --git a/README.md b/README.md
index ad49d17..2c6c03c 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,5 @@
# HttpClientServiceHelper
+
.NET HTTP Client Service library.
## Stats and Reports
@@ -6,10 +7,7 @@

[](https://dev.azure.com/daraoladapo/HttpClientServiceHelper/_build/latest?definitionId=3&branchName=master)

- 
-
-
-
+ 
Use this library to quickly bootstrap your HttpClient Service calls.
It uses the System.Net.Http library.
@@ -34,4 +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
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
}
}