HttpApplicationStateBase.Get Method

Definition

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 -> obj
Public Overridable Function Get (index As Integer) As Object

Parameters

index
Int32

The index of the application state object to get.

Returns

The object referenced by index.

Exceptions

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 -> obj
Public Overridable Function Get (name As String) As Object

Parameters

name
String

The name of the object to get.

Returns

The object referenced by name.

Exceptions

Applies to