Udostępnij za pośrednictwem


UrlMappingCollection.RemoveAt(Int32) Metoda

Definicja

UrlMapping Usuwa obiekt z określonym indeksem z 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 UrlMapping obiektu do usunięcia.

Przykłady

Poniższy przykład kodu usuwa UrlMapping obiekt z obiektu UrlMappingCollection.

Zapoznaj się z przykładem kodu w temacie klasy, UrlMappingCollection aby dowiedzieć się, jak pobrać kolekcję.


// 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

Uwagi

Metoda RemoveAt usuwa add element w urlMappings 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ż