SessionStateItemCollection.Item Property (Int32)
.NET Framework 2.0
Gets or sets a value in the collection by numerical index.
Namespace: System.Web.SessionState
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual property Object^ default [int] { Object^ get (int index) sealed; void set (int index, Object^ value) sealed; }
/** @property */ public final Object get_Item (int index) /** @property */ public final void set_Item (int index, Object value)
Not applicable.
Parameters
- index
The numerical index of the value in the collection.
Property Value
The value in the collection stored at the specified index. If the specified key is not found, attempting to get it returns a null reference (Nothing in Visual Basic), and attempting to set it creates a new element using the specified key.The following code example sets and gets values in a SessionStateItemCollection collection by numerical index.
Community Additions
ADD
Show: