From 74d3d614abf4bed497e074fc4bec8bf77f1622fa Mon Sep 17 00:00:00 2001 From: wanggaofeng <15601716045@163.com> Date: Thu, 1 Feb 2024 11:44:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HttpClientStudy.Core/HttpError.cs | 15 +++++++++++++++ HttpClientStudy.Core/HttpProxy.cs | 16 ++++++++++++++++ .../HttpRequests/HttpRequestContents.cs | 15 +++++++++++++++ .../HttpRequests/HttpRequestError.cs | 15 +++++++++++++++ .../HttpRequests/HttpRequestMethods.cs | 2 +- .../HttpRequests/HttpRequestParameters.cs | 15 +++++++++++++++ .../HttpResponses/HttpResponseContent.cs | 15 +++++++++++++++ .../HttpResponses/HttpResponseView.cs | 15 +++++++++++++++ HttpClientStudy.Core/UseJsonInHttp.cs | 16 ++++++++++++++++ 9 files changed, 123 insertions(+), 1 deletion(-) create mode 100644 HttpClientStudy.Core/HttpError.cs create mode 100644 HttpClientStudy.Core/HttpProxy.cs create mode 100644 HttpClientStudy.Core/HttpRequests/HttpRequestContents.cs create mode 100644 HttpClientStudy.Core/HttpRequests/HttpRequestError.cs create mode 100644 HttpClientStudy.Core/HttpRequests/HttpRequestParameters.cs create mode 100644 HttpClientStudy.Core/HttpResponses/HttpResponseContent.cs create mode 100644 HttpClientStudy.Core/HttpResponses/HttpResponseView.cs create mode 100644 HttpClientStudy.Core/UseJsonInHttp.cs diff --git a/HttpClientStudy.Core/HttpError.cs b/HttpClientStudy.Core/HttpError.cs new file mode 100644 index 0000000..f9dc187 --- /dev/null +++ b/HttpClientStudy.Core/HttpError.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HttpClientStudy.Core +{ + /// + /// Http 错误处理 + /// + public class HttpError + { + } +} diff --git a/HttpClientStudy.Core/HttpProxy.cs b/HttpClientStudy.Core/HttpProxy.cs new file mode 100644 index 0000000..1f2d817 --- /dev/null +++ b/HttpClientStudy.Core/HttpProxy.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HttpClientStudy.Core +{ + /// + /// Http 代理 + /// + public class HttpProxy + { + + } +} diff --git a/HttpClientStudy.Core/HttpRequests/HttpRequestContents.cs b/HttpClientStudy.Core/HttpRequests/HttpRequestContents.cs new file mode 100644 index 0000000..4b15b77 --- /dev/null +++ b/HttpClientStudy.Core/HttpRequests/HttpRequestContents.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HttpClientStudy.Core.HttpRequests +{ + /// + /// Http 请求内容 + /// + public class HttpRequestContents + { + } +} diff --git a/HttpClientStudy.Core/HttpRequests/HttpRequestError.cs b/HttpClientStudy.Core/HttpRequests/HttpRequestError.cs new file mode 100644 index 0000000..f1e5ed1 --- /dev/null +++ b/HttpClientStudy.Core/HttpRequests/HttpRequestError.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HttpClientStudy.Core.HttpRequests +{ + /// + /// Http 请求错误处理 + /// + public class HttpRequestError + { + } +} diff --git a/HttpClientStudy.Core/HttpRequests/HttpRequestMethods.cs b/HttpClientStudy.Core/HttpRequests/HttpRequestMethods.cs index 853ac89..525d9df 100644 --- a/HttpClientStudy.Core/HttpRequests/HttpRequestMethods.cs +++ b/HttpClientStudy.Core/HttpRequests/HttpRequestMethods.cs @@ -7,7 +7,7 @@ using System.Threading.Tasks; namespace HttpClientStudy.Core.HttpRequests { /// - /// Http请求方法(谓词) + /// Http 请求方法(谓词) /// public class HttpRequestMethods { diff --git a/HttpClientStudy.Core/HttpRequests/HttpRequestParameters.cs b/HttpClientStudy.Core/HttpRequests/HttpRequestParameters.cs new file mode 100644 index 0000000..13307b1 --- /dev/null +++ b/HttpClientStudy.Core/HttpRequests/HttpRequestParameters.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HttpClientStudy.Core.HttpRequests +{ + /// + /// Http 请求参数 + /// + public class HttpRequestParameters + { + } +} diff --git a/HttpClientStudy.Core/HttpResponses/HttpResponseContent.cs b/HttpClientStudy.Core/HttpResponses/HttpResponseContent.cs new file mode 100644 index 0000000..05d3afb --- /dev/null +++ b/HttpClientStudy.Core/HttpResponses/HttpResponseContent.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HttpClientStudy.Core.HttpResponses +{ + /// + /// Http 响应内容 + /// + public class HttpResponseContent + { + } +} diff --git a/HttpClientStudy.Core/HttpResponses/HttpResponseView.cs b/HttpClientStudy.Core/HttpResponses/HttpResponseView.cs new file mode 100644 index 0000000..b8d5d4c --- /dev/null +++ b/HttpClientStudy.Core/HttpResponses/HttpResponseView.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HttpClientStudy.Core.HttpResponses +{ + /// + /// Http 响应概述 + /// + public class HttpResponseView + { + } +} diff --git a/HttpClientStudy.Core/UseJsonInHttp.cs b/HttpClientStudy.Core/UseJsonInHttp.cs new file mode 100644 index 0000000..7ee91ab --- /dev/null +++ b/HttpClientStudy.Core/UseJsonInHttp.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HttpClientStudy.Core +{ + /// + /// Http中使用Json + /// + public class UseJsonInHttp + { + + } +}