HttpSessionStateBase.Item[] Property

Definition

When overridden in a derived class, gets or sets individual session values.

Overloads

Item[Int32]

When overridden in a derived class, gets or sets a session value by using the specified index.

Item[String]

When overridden in a derived class, gets or sets a session value by using the specified name.

Item[Int32]

When overridden in a derived class, gets or sets a session value by using the specified index.

public:
 virtual property System::Object ^ default[int] { System::Object ^ get(int index); void set(int index, System::Object ^ value); };
public virtual object this[int index] { get; set; }
member this.Item(int) : obj with get, set
Default Public Overridable Property Item(index As Integer) As Object

Parameters

index
Int32

The index of the session value.

Property Value

The session-state value that is stored at the specified index.

Exceptions

Applies to

Item[String]

When overridden in a derived class, gets or sets a session value by using the specified name.

public:
 virtual property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); void set(System::String ^ name, System::Object ^ value); };
public virtual object this[string name] { get; set; }
member this.Item(string) : obj with get, set
Default Public Overridable Property Item(name As String) As Object

Parameters

name
String

The key name of the session value.

Property Value

The session-state value that has the specified name, or null if the item does not exist.

Exceptions

Applies to