SessionStateItemCollection.Item Property (Int32)

Gets or sets a value in the collection by numerical index.

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

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: