HttpContext.Application 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 the HttpApplicationState object for the current HTTP request.
public:
property System::Web::HttpApplicationState ^ Application { System::Web::HttpApplicationState ^ get(); };
public System.Web.HttpApplicationState Application { get; }
member this.Application : System.Web.HttpApplicationState
Public ReadOnly Property Application As HttpApplicationState
Property Value
The HttpApplicationState for the current HTTP request.
To get the HttpApplication object for the current HTTP request, use ApplicationInstance. (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.)