HttpContext.Server 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取提供用于处理 Web 请求的方法的 HttpServerUtility 对象。
public:
property System::Web::HttpServerUtility ^ Server { System::Web::HttpServerUtility ^ get(); };
public System.Web.HttpServerUtility Server { get; }
member this.Server : System.Web.HttpServerUtility
Public ReadOnly Property Server As HttpServerUtility
属性值
当前 HTTP 请求的 HttpServerUtility。
注解
该 Server 属性提供对类的属性和方法的 HttpServerUtility 编程访问。 由于 ASP.NET 页包含对包含类) HttpContext的命名空间 (的默认引用System.Web,因此无需使用完全限定的HttpContext类引用HttpContext即可引用 .aspx 页上的成员。 例如,可用于 Server.CreateObject("MyCOMComponent")
在服务器上创建 COM 对象的实例。 但是,如果要使用 ASP.NET 代码隐藏模块的成员HttpServerUtility,则必须在模块中包含对命名空间的引用System.Web,以及对当前活动请求/响应上下文和要使用的类System.Web的完全限定引用。 例如,在代码隐藏页中,必须指定完全限定的名称 HttpContext.Current.Server.CreateObject("MyCOMComponent")
。