Udostępnij za pośrednictwem


IHttpSessionState.Item[] Właściwość

Definicja

Pobiera lub ustawia wartości poszczególnych elementów stanu sesji.

Przeciążenia

Item[Int32]

Pobiera lub ustawia wartość elementu stanu sesji według indeksu liczbowego.

Item[String]

Pobiera lub ustawia wartość elementu stanu sesji według nazwy.

Item[Int32]

Pobiera lub ustawia wartość elementu stanu sesji według indeksu liczbowego.

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

Parametry

index
Int32

Indeks liczbowy wartości elementu stanu sesji.

Wartość właściwości

Wartość elementu stanu sesji określona w parametrze index .

Przykłady

Poniższy przykład kodu implementuje Item[] właściwość interfejsu IHttpSessionState do przechowywania i zwracania wewnętrznej wartości elementu stanu sesji słownika według indeksu liczbowego.

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

Zobacz też

Dotyczy

Item[String]

Pobiera lub ustawia wartość elementu stanu sesji według nazwy.

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

Parametry

name
String

Nazwa klucza wartości elementu stanu sesji.

Wartość właściwości

Wartość elementu stanu sesji określona w parametrze name .

Przykłady

Poniższy przykład kodu implementuje Item[] właściwość interfejsu IHttpSessionState do przechowywania i zwracania wewnętrznej wartości elementu stanu sesji słownika według jego nazwy klucza.

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

Zobacz też

Dotyczy