SessionStateItemCollection.Item Property (String)

Gets or sets a value in the collection by name.

Namespace: System.Web.SessionState
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.

No code example is currently available or this language may not be supported.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: