This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Download Microsoft Edge
More info about Internet Explorer and Microsoft Edge
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.)