diff --git a/HttpClientStudy.Core/ConfigFiles/Config.json b/HttpClientStudy.Core/ConfigFiles/Config.json deleted file mode 100644 index 007c557..0000000 --- a/HttpClientStudy.Core/ConfigFiles/Config.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "WebApi": { - "BaseUrl": "http://localhost:5189", - "WebAppMutexName": "HttpClientStudy.WebApp" - } -} \ No newline at end of file diff --git a/HttpClientStudy.Core/HttpClients/BaseHttpClient.cs b/HttpClientStudy.Core/HttpClients/BaseHttpClient.cs index 4788c0e..20273d9 100644 --- a/HttpClientStudy.Core/HttpClients/BaseHttpClient.cs +++ b/HttpClientStudy.Core/HttpClients/BaseHttpClient.cs @@ -94,5 +94,29 @@ return result; } #endregion + + #region Head + #endregion + + #region Put + #endregion + + #region Post + #endregion + + #region Options + #endregion + + #region Delete + #endregion + + #region Trace + #endregion + + #region Connect + #endregion + + #region Patch + #endregion } }