HttpContext.ApplicationInstance Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the HttpApplication object for the current HTTP request.
public:
property System::Web::HttpApplication ^ ApplicationInstance { System::Web::HttpApplication ^ get(); void set(System::Web::HttpApplication ^ value); };
public System.Web.HttpApplication ApplicationInstance { get; set; }
member this.ApplicationInstance : System.Web.HttpApplication with get, set
Public Property ApplicationInstance As HttpApplication
Property Value
The HttpApplication for the current HTTP request.
ASP.NET uses ApplicationInstance
instead of Application
as a property name to refer to the current HttpApplication instance in order to avoid confusion between ASP.NET and classic ASP. In classic ASP, Application
refers to the global application state dictionary.
Exceptions
The Web application is running under IIS 7.0 in Integrated mode, and an attempt was made to change the property value from a non-null value to null
.