HttpApplicationState.Get Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient un objet HttpApplicationState par son nom ou son index.
Surcharges
Get(Int32) |
Obtient un objet HttpApplicationState par son index numérique. |
Get(String) |
Obtient un objet HttpApplicationState par nom. |
Get(Int32)
Obtient un objet HttpApplicationState par son index numérique.
public:
System::Object ^ Get(int index);
public object Get (int index);
member this.Get : int -> obj
Public Function Get (index As Integer) As Object
Paramètres
- index
- Int32
Index de l'objet d'état de l'application.
Retours
Objet référencé par index
.
Exemples
L’exemple suivant retourne le premier objet (index = 0) de la HttpApplicationState collection de l’objet intrinsèque Application et le copie dans une nouvelle variable d’objet.
Object MyObject;
MyObject = Application.Get(0);
Dim MyObject As Object
MyObject = Application.Get(0)
S’applique à
Get(String)
Obtient un objet HttpApplicationState par nom.
public:
System::Object ^ Get(System::String ^ name);
public object Get (string name);
member this.Get : string -> obj
Public Function Get (name As String) As Object
Paramètres
- name
- String
Nom de l'objet.
Retours
Objet référencé par name
.
Remarques
L’exemple suivant retourne un objet nommé MyAppVar1 à partir de la HttpApplicationState collection de l’objet intrinsèque Application et le copie dans une nouvelle variable objet.
Dim MyObject As Object
MyObject = Application.Get("MyAppVar1")
Object MyObject;
MyObject = Application.Get("MyAppVar1");