为什么HttpContext.Current是静态的?

时间:2014-07-15 13:37:42

标签: asp.net

我有点困惑为什么HttpContext.Current是一个静态属性?如果运行时当时正在处理多个请求,那么所有请求都不会看到相同的Current值,因为它是静态的吗?或者它是通过使用某种同步技术进行框架处理的,如果是这样,为什么静态不是正常属性。

想念什么?

1 个答案:

答案 0 :(得分:6)

以下是Current属性的实现:

public static HttpContext Current
{
  get
  {
    return ContextBase.Current as HttpContext;
  }
  set
  {
    ContextBase.Current = (object) value;
  }
}

在该属性中使用的ContextBase:

internal class ContextBase
{
  internal static object Current
  {
    get
    {
      return CallContext.HostContext;
    }
    [SecurityPermission(SecurityAction.Demand, Unrestricted = true)] set
    {
      CallContext.HostContext = value;
    }
  }

和CallContext:

public sealed class CallContext
{

  public static object HostContext
  {
    [SecurityCritical] 
    get
    {
      ExecutionContext.Reader executionContextReader = 
         Thread.CurrentThread.GetExecutionContextReader();
      return executionContextReader.IllogicalCallContext.HostContext ?? executionContextReader.LogicalCallContext.HostContext;
    }
    [SecurityCritical] 
    set
    {
      ExecutionContext executionContext = 
         Thread.CurrentThread.GetMutableExecutionContext();
      if (value is ILogicalThreadAffinative)
      {
        executionContext.IllogicalCallContext.HostContext = (object) null;
        executionContext.LogicalCallContext.HostContext = value;
      }
      else
      {
        executionContext.IllogicalCallContext.HostContext = value;
        executionContext.LogicalCallContext.HostContext = (object) null;
      }
    }

CallContext.HostContext它可以看到它使用Thread.CurrentThread对象,并且它属于当前线程,因此它不会与其他线程\请求共享。

有时您需要从Page \ Controller外部访问HttpContext。例如,如果您有一些代码在其他地方执行,但它是从Page触发的。然后在该代码中,您可以使用HttpContext.Current从当前请求,响应和所有其他上下文数据中获取数据。