mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-18 22:35:58 +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;
|
|||
|
|
|||
|
}
|
|||
|
}
|