IHttpContextAccessor 接口

定义

提供对当前 HttpContext的访问(如果有)。

public interface class IHttpContextAccessor
public interface IHttpContextAccessor
type IHttpContextAccessor = interface
Public Interface IHttpContextAccessor
派生

注解

应谨慎使用此接口。 它依赖于 AsyncLocal<T> 对异步调用产生负面影响的性能。 它还会创建对“环境状态”的依赖,这可能会使测试更加困难。

属性

HttpContext

获取或设置当前 HttpContextnull如果没有活动 HttpContext,则返回 。

适用于