Udostępnij za pośrednictwem


ClientTargetCollection.RemoveAt(Int32) Metoda

Definicja

ClientTarget Usuwa obiekt z określonym indeksem kolekcji.

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

Parametry

index
Int32

Indeks kolekcji do ClientTarget usunięcia.

Przykłady

Poniższy przykład kodu usuwa ClientTarget obiekt z kolekcji ClientTargetCollection .

Aby uzyskać informacje o sposobie pobierania kolekcji, zobacz przykładowy kod w przeglądzie ClientTargetCollection klasy.


// Remove the client target at the 
// specified index from the collection.
clientTargets.RemoveAt(0);

// Update the configuration file.
if (!clientTargetSection.IsReadOnly())
  configuration.Save();
' Remove the client target at the 
' specified index from the collection.
clientTargets.RemoveAt(0)

' Update the configuration file.
If Not clientTargetSection.IsReadOnly() Then
    configuration.Save()
End If

Uwagi

Metoda RemoveAt usuwa add element w clientTarget sekcji na bieżącym poziomie hierarchii i wstawia remove element. Element remove skutecznie usuwa odwołanie do elementu zdefiniowanego add w plikach konfiguracji nadrzędnej na wyższych poziomach w hierarchii, ale nie usuwa go.

Dotyczy

Zobacz też