如果整个应用程序不是静态的,HttpContext.Current如何可见?

时间:2011-07-13 07:46:28

标签: c# .net

我真的不明白像HttpContext.Current这样的类对于整个Web应用程序是可见的(对于单个请求),而不是“静态”。

.NET为该课程做了哪种处理?

2 个答案:

答案 0 :(得分:3)

在类HttpContext中,Current是静态属性

public static HttpContext Current { get; set; }

更多信息请参阅: http://msdn.microsoft.com/en-us/library/system.web.httpcontext.current.aspx

答案 1 :(得分:1)