IHttpSessionState.Item[] Property

Definition

Gets or sets individual session-state item values.

Overloads

Item[Int32]

Gets or sets a session-state item value by numerical index.

Item[String]

Gets or sets a session-state item value by name.

Item[Int32]

Gets or sets a session-state item 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, set
Default Public Property Item(index As Integer) As Object

Parameters

index
Int32

The numerical index of the session-state item value.

Property Value

The session-state item value specified in the index parameter.

Examples

The following code example implements the Item[] property of the IHttpSessionState interface to store and return an internal dictionary session-state item value by numeric index.

public object this[int index]
{
  get { return pSessionItems[index]; }
  set { pSessionItems[index] = value; }
}
Public Property Item(index As Integer) As Object Implements IHttpSessionState.Item    
  Get
    Return pSessionItems(index)
  End Get
  Set
    pSessionItems(index) = value
  End Set
End Property

See also

Applies to

Item[String]

Gets or sets a session-state item 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, set
Default Public Property Item(name As String) As Object

Parameters

name
String

The key name of the session-state item value.

Property Value

The session-state item value specified in the name parameter.

Examples

The following code example implements the Item[] property of the IHttpSessionState interface to store and return an internal dictionary session-state item value by its key name.

public object this[string name]
{
  get { return pSessionItems[name]; }
  set { pSessionItems[name] = value; }
}
Public Property Item(name As String) As Object Implements IHttpSessionState.Item
  Get
    Return pSessionItems(name)
  End Get
  Set
    pSessionItems(name) = value
  End Set
End Property

See also

Applies to