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 object this[int index] { get; set; }

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

.NET Framework 4.8.1 og andre versioner
Produkt Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Item[String]

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

public virtual object this[string name] { get; set; }

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

.NET Framework 4.8.1 og andre versioner
Produkt Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1