From ce0be86174b59554f3c53f22d6863dbec8713330 Mon Sep 17 00:00:00 2001 From: bicijinlian Date: Thu, 27 Jun 2024 01:06:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HttpClientStudy.Core/ConfigFiles/Config.json | 6 ----- .../HttpClients/BaseHttpClient.cs | 24 +++++++++++++++++++ 2 files changed, 24 insertions(+), 6 deletions(-) delete mode 100644 HttpClientStudy.Core/ConfigFiles/Config.json 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 } }