HttpApplicationStateWrapper.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 d'état par nom ou index.
Surcharges
Get(Int32) |
Retourne un objet d’état par index. |
Get(String) |
Retourne un objet d’état par nom. |
Get(Int32)
Retourne un objet d’état par index.
public:
override System::Object ^ Get(int index);
public override object Get (int index);
override this.Get : int -> obj
Public Overrides Function Get (index As Integer) As Object
Paramètres
- index
- Int32
Index de l’objet d’état d’application à obtenir.
Retours
Objet référencé par index
.
Exceptions
index
est en dehors de la plage valide des index pour la collection.
S’applique à
Get(String)
Retourne un objet d’état par nom.
public:
override System::Object ^ Get(System::String ^ name);
public override object Get (string name);
override this.Get : string -> obj
Public Overrides Function Get (name As String) As Object
Paramètres
- name
- String
Nom de l’objet à obtenir.
Retours
Objet auquel name
fait référence, le cas échéant ; sinon, null
.