Sdílet prostřednictvím


UrlMappingCollection.RemoveAt(Int32) Metoda

Definice

Odebere UrlMapping objekt se zadaným indexem z kolekce.

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

Parametry

index
Int32

Index kolekce objektu UrlMapping , který chcete odebrat.

Příklady

Následující příklad kódu odebere UrlMapping objekt z objektu UrlMappingCollection.

V příkladu kódu v tématu předmětu UrlMappingCollection se dozvíte, jak získat kolekci.


// Remove the URL at the 
// specified index from the collection.
urlMappings.RemoveAt(0);

// Update the configuration file.
if (!urlMappingSection.IsReadOnly())
  configuration.Save();
' Remove the URL at the 
' specified index from the collection.
urlMappings.RemoveAt(0)

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

Poznámky

Metoda RemoveAt odstraní add prvek v oddílu urlMappings na aktuální úrovni hierarchie a vloží remove prvek. Element remove efektivně odebere odkaz na add prvek definovaný v nadřazených konfiguračních souborech na vyšších úrovních v hierarchii, ale neodstraní ho.

Platí pro

Viz také