HttpApplicationStateWrapper.Item[] Property    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an object in an HttpApplicationState collection by name or index.
Overloads
| Item[Int32] | Gets a state object by index. | 
| Item[String] | Gets a state object by name. | 
Item[Int32]
Gets a state object by index.
public:
 virtual property System::Object ^ default[int] { System::Object ^ get(int index); };public override object this[int index] { get; }member this.Item(int) : objDefault Public Overrides ReadOnly Property Item(index As Integer) As ObjectParameters
- index
- Int32
The index of the object in the collection.
Property Value
The object referenced by index.
Exceptions
index is outside the valid range of indexes for the collection.
Applies to
Item[String]
Gets a state object by name.
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, setDefault Public Overrides Property Item(name As String) As ObjectParameters
- name
- String
The name of the object in the collection.
Property Value
The object referenced by name, if found; otherwise, null.