HttpSessionStateContainer.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 or sets individual session values.
Overloads
| Item[Int32] | Gets or sets a session value by numerical index. | 
| Item[String] | Gets or sets a session value by name. | 
Item[Int32]
Gets or sets a session value by numerical index.
public:
 property System::Object ^ default[int] { System::Object ^ get(int index); void set(int index, System::Object ^ value); };public object this[int index] { get; set; }member this.Item(int) : obj with get, setDefault Public Property Item(index As Integer) As ObjectParameters
- index
- Int32
The numerical index of the session value.
Property Value
The session-state value stored at the specified index.
Implements
See also
Applies to
Item[String]
Gets or sets a session value by name.
public:
 property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); void set(System::String ^ name, System::Object ^ value); };public object this[string name] { get; set; }member this.Item(string) : obj with get, setDefault Public Property Item(name As String) As ObjectParameters
- name
- String
The key name of the session value.
Property Value
The session-state value with the specified name.