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.)