HttpApplicationStateWrapper.Item[] Propriété
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 dans une collection HttpApplicationState par nom ou index.
Surcharges
Item[Int32] |
Obtient un objet d’état par index. |
Item[String] |
Obtient un objet d’état par nom. |
Item[Int32]
Obtient un objet d’état par index.
public:
virtual property System::Object ^ default[int] { System::Object ^ get(int index); };
public override object this[int index] { get; }
member this.Item(int) : obj
Default Public Overrides ReadOnly Property Item(index As Integer) As Object
Paramètres
- index
- Int32
Index de l’objet dans la collection.
Valeur de propriété
Objet référencé par index
.
Exceptions
index
est en dehors de la plage valide des index pour la collection.
S’applique à
Item[String]
Obtient un objet d’état par nom.
public:
virtual property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); void set(System::String ^ name, System::Object ^ value); };
public override object this[string name] { get; set; }
member this.Item(string) : obj with get, set
Default Public Overrides Property Item(name As String) As Object
Paramètres
- name
- String
Nom de l’objet dans la collection.
Valeur de propriété
Objet auquel name
fait référence, le cas échéant ; sinon, null
.