You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
533 B
28 lines
533 B
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace EC.Utils
|
|
{
|
|
/// <summary>
|
|
/// HttpContext
|
|
/// 版 本:V3.0.0
|
|
/// 版 权:EasyCode
|
|
/// 作 者:LXC
|
|
/// </summary>
|
|
public static class HttpContext
|
|
{
|
|
private static IHttpContextAccessor _httpContextAccessor;
|
|
|
|
public static void Configure(IHttpContextAccessor httpContextAccessor)
|
|
{
|
|
_httpContextAccessor = httpContextAccessor;
|
|
}
|
|
|
|
public static Microsoft.AspNetCore.Http.HttpContext Current
|
|
{
|
|
get
|
|
{
|
|
return _httpContextAccessor.HttpContext;
|
|
}
|
|
}
|
|
}
|
|
}
|