HttpContext.Application Eigenschaft

Definition

Ruft das HttpApplicationState-Objekt für die aktuelle HTTP-Anforderung ab.

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

Eigenschaftswert

HttpApplicationState

Das HttpApplicationState-Objekt für die aktuelle HTTP-Anforderung.

Verwenden Sie HttpApplication, um das ApplicationInstance-Objekt für die aktuelle HTTP-Anforderung abzurufen. (In ASP.NET wird als Eigenschaftenname ApplicationInstance anstelle von Application verwendet, um auf die aktuelle HttpApplication-Instanz zu verweisen, um Verwechslungen zwischen ASP.NET und klassischem ASP zu verhindern. Im klassischem ASP verweist Application auf das globale Anwendungszustands-Wörterbuch.)

Gilt für

Siehe auch