HttpApplicationStateBase.Get Method    
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.
When overridden in a derived class, gets a state object by name or index.
Overloads
| Get(Int32) | When overridden in a derived class, gets a state object by index. | 
| Get(String) | When overridden in a derived class, gets a state object by name. | 
Get(Int32)
When overridden in a derived class, gets a state object by index.
public:
 virtual System::Object ^ Get(int index);public virtual object Get(int index);abstract member Get : int -> obj
override this.Get : int -> objPublic Overridable Function Get (index As Integer) As ObjectParameters
- index
- Int32
The index of the application state object to get.
Returns
The object referenced by index.
Exceptions
Always.
Applies to
Get(String)
When overridden in a derived class, gets a state object by name.
public:
 virtual System::Object ^ Get(System::String ^ name);public virtual object Get(string name);abstract member Get : string -> obj
override this.Get : string -> objPublic Overridable Function Get (name As String) As ObjectParameters
- name
- String
The name of the object to get.
Returns
The object referenced by name.
Exceptions
Always.