HttpContext.Current プロパティ

定義

現在の HTTP 要求に対する HttpContext オブジェクトを取得または設定します。

public:
 static property System::Web::HttpContext ^ Current { System::Web::HttpContext ^ get(); void set(System::Web::HttpContext ^ value); };
public static System.Web.HttpContext Current { get; set; }
member this.Current : System.Web.HttpContext with get, set
Public Shared Property Current As HttpContext

プロパティ値

HttpContext

現在の HTTP リクエストに対する HttpContext インスタンス。

次のコード例では、プロパティを Current 使用して、 HttpContext.AddError および HttpContext.ClearError メソッドとプロパティに HttpContext.AllErrors アクセスします。 この例では、メソッドを使用して 3 つのカスタム例外を AddError 作成し、プロパティを AllErrors 使用してこれらの例外を配列に読み込みます。 次に、配列を含むページに書き込み、メソッドを ClearError 使用してプロパティからすべてのエラーを Context クリアします。

protected void Page_Load(object sender, EventArgs e)
{
    HttpContext context = HttpContext.Current;
    Response.Write("<p>HttpContext.Current Example:</p>");

    // Add three custom exceptions.
    context.AddError(new Exception("New Exception #1"));
    context.AddError(new Exception("New Exception #2"));
    context.AddError(new Exception("New Exception #3"));

    // Capture all the new Exceptions in an array.
    Exception[] errs = context.AllErrors;

    foreach (Exception ex in errs)
    {
        Response.Write("<p>" + Server.HtmlEncode(ex.ToString()) + "</p>");
    }

    // Clear the exceptions so ASP.NET won't handle them.
    context.ClearError();
}
Protected Sub Page_Load(sender As Object, e As EventArgs)
Dim context As HttpContext = HttpContext.Current
Response.Write("<p>HttpContext.Current Example:</p>")

' Add three custom exceptions.
context.AddError(New Exception("New Exception #1"))
context.AddError(New Exception("New Exception #2"))
context.AddError(New Exception("New Exception #3"))

' Capture all the new Exceptions in an array.
Dim errs As Exception() = context.AllErrors

For Each ex As Exception In errs
Response.Write("<p>" & Server.HtmlEncode(ex.ToString()) & "</p>")
Next

' Clear the exceptions so ASP.NET won't handle them.
context.ClearError()
End Sub

注釈

このプロパティは、クラスの HttpContext 静的プロパティです。 このプロパティは、現在の HttpContext 要求に適用されるインスタンスを格納します。 このインスタンスのプロパティは、クラスの HttpContext 非静的プロパティです。

このプロパティを Page.Context 使用して、現在の HTTP 要求の HttpContext オブジェクトにアクセスすることもできます。

適用対象

こちらもご覧ください