mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
14 lines
389 B
C#
14 lines
389 B
C#
using Infrastructure.Extensions.AutofacManager;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Infrastructure.Utilities
|
|
{
|
|
public static class HttpContext
|
|
{
|
|
private static IHttpContextAccessor _accessor=AutofacContainerModule.GetService<IHttpContextAccessor>();
|
|
|
|
public static Microsoft.AspNetCore.Http.HttpContext Current => _accessor.HttpContext;
|
|
|
|
}
|
|
}
|