SessionStateItemCollection.Item Property (String)
.NET Framework 3.0
Gets or sets a value in the collection by name.
Namespace: System.Web.SessionState
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual property Object^ default [String^] { Object^ get (String^ name) sealed; void set (String^ name, Object^ value) sealed; }
/** @property */ public final Object get_Item (String name) /** @property */ public final void set_Item (String name, Object value)
Not applicable.
Parameters
- name
The key name of the value in the collection.
Property Value
The value in the collection with the specified name. 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 name.
Community Additions
ADD
Show: