HttpContext.Server プロパティ

定義

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 ページには名前空間への既定の System.Web 参照 (クラスを含む) が含 HttpContext まれているため、 への完全修飾クラス参照を使用せずに、.aspx ページで のメンバー HttpContextHttpContext参照できます。 たとえば、 を使用 Server.CreateObject("MyCOMComponent") して、サーバー上に COM オブジェクトのインスタンスを作成できます。 ただし、ASP.NET 分離コード モジュールの HttpServerUtility のメンバーを使用する場合は、モジュール内の名前空間への System.Web 参照と、現在アクティブな要求/応答コンテキストと、使用する クラス System.Web の両方への完全修飾参照を含める必要があります。 たとえば、分離コード ページでは、完全修飾名 HttpContext.Current.Server.CreateObject("MyCOMComponent")を指定する必要があります。

適用対象