Udostępnij za pośrednictwem


IHttpSessionState.RemoveAt(Int32) Metoda

Definicja

Usuwa element w określonym indeksie z kolekcji elementów stanu sesji.

public:
 void RemoveAt(int index);
public void RemoveAt (int index);
abstract member RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

Parametry

index
Int32

Indeks elementu do usunięcia z kolekcji stanu sesji.

Przykłady

Poniższy przykład kodu implementuje RemoveAt metodę interfejsu IHttpSessionState w celu usunięcia elementu stanu sesji z wewnętrznej kolekcji elementów stanu sesji według indeksu liczbowego.

public void RemoveAt(int index)
{
  pSessionItems.RemoveAt(index);
}
Public Sub RemoveAt(index As Integer) Implements IHttpSessionState.RemoveAt    
  pSessionItems.RemoveAt(index)
End Sub

Dotyczy

Zobacz też