Freigeben über


HttpApplicationState.Contents Eigenschaft

Definition

Ruft einen Verweis auf das HttpApplicationState-Objekt ab.

public:
 property System::Web::HttpApplicationState ^ Contents { System::Web::HttpApplicationState ^ get(); };
public System.Web.HttpApplicationState Contents { get; }
member this.Contents : System.Web.HttpApplicationState
Public ReadOnly Property Contents As HttpApplicationState

Eigenschaftswert

HttpApplicationState

Ruft einen Verweis auf das HttpApplicationState-Objekt ab.

Beispiele

Im folgenden Beispiel wird ein neues HttpApplicationState Objekt erstellt, das zum Zugreifen auf die Objektnamen in der Anwendungsstatussammlung verwendet wird.


HttpApplicationState AppState2;

AppState2 = Application.Contents;

String[] StateVars = new String[AppState2.Count];
StateVars = AppState2.AllKeys;
Dim AppState2 As HttpApplicationState
 
AppState2 = Application.Contents
 
Dim StateVars(AppState2.Count) As String
StateVars = AppState2.AllKeys

Hinweise

Diese Eigenschaft bietet Kompatibilität mit früheren Versionen von ASP.

Gilt für