System.Web.HttpContext.Current在请求之间是静态的

时间:2013-03-23 11:38:52

标签: c# asp.net request static-members

在我的网络应用程序中,我正在使用System.Web.HttpContext.Current并且它代表当前命中的上下文,我想知道它是如何从任何地方访问的,直到我注意到它是static成员! 虽然它是一个静态成员,但如果在几乎同一时间内收到两个请求,它如何保持其价值。 如下:

#Req1----> | set the value of the static field to req1
#Req2----> | set the value of the static field to req2
#Req1      | use that static its supposed to be req2 while its req1

我是否错过了解某些内容或其中有诀窍或什么?

1 个答案:

答案 0 :(得分:5)

这是一个非常聪明的问题!

HttpContext.Current实现为线程局部变量。实际上,它是使用LogicalCallContext实现的,但其行为类似于线程本地。

这样想:

[ThreadLocal]
public static HttpContext Current;

是的,这意味着只有主请求线程才能访问它。它将在您启动的其他线程上为null。