main
wanggaofeng 8 months ago
parent 87284d6750
commit 74d3d614ab

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HttpClientStudy.Core
{
/// <summary>
/// Http 错误处理
/// </summary>
public class HttpError
{
}
}

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HttpClientStudy.Core
{
/// <summary>
/// Http 代理
/// </summary>
public class HttpProxy
{
}
}

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HttpClientStudy.Core.HttpRequests
{
/// <summary>
/// Http 请求内容
/// </summary>
public class HttpRequestContents
{
}
}

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HttpClientStudy.Core.HttpRequests
{
/// <summary>
/// Http 请求错误处理
/// </summary>
public class HttpRequestError
{
}
}

@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace HttpClientStudy.Core.HttpRequests
{
/// <summary>
/// Http请求方法(谓词)
/// Http 请求方法(谓词)
/// </summary>
public class HttpRequestMethods
{

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HttpClientStudy.Core.HttpRequests
{
/// <summary>
/// Http 请求参数
/// </summary>
public class HttpRequestParameters
{
}
}

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HttpClientStudy.Core.HttpResponses
{
/// <summary>
/// Http 响应内容
/// </summary>
public class HttpResponseContent
{
}
}

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HttpClientStudy.Core.HttpResponses
{
/// <summary>
/// Http 响应概述
/// </summary>
public class HttpResponseView
{
}
}

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HttpClientStudy.Core
{
/// <summary>
/// Http中使用Json
/// </summary>
public class UseJsonInHttp
{
}
}
Loading…
Cancel
Save