using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HttpClientStudy.Core.HttpRequests { /// /// Http 请求参数 /// /// /// Url 参数 /// 参数拼接在请求的Url中 /// /// /// 路由参数 /// 参数在请求路由中 /// /// /// 请求头参数 /// 参数在请求头中 /// /// /// 请求体参数 /// 参数在请求体中 /// /// /// /// /// 请求体参数,
放入单独类 ///
public class HttpRequestParameters { } }