Поделиться через


UrlMappingCollection.RemoveAt(Int32) Метод

Определение

Удаляет объект UrlMapping с указанным индексом из коллекции.

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

Параметры

index
Int32

Индекс коллекции удаляемого объекта UrlMapping.

Примеры

В следующем примере кода объект удаляется UrlMapping из UrlMappingCollection.

Сведения о том, как получить коллекцию, см. в примере кода в UrlMappingCollection разделе класса.


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

Комментарии

Метод RemoveAt удаляет add элемент в urlMappings разделе на текущем уровне иерархии и вставляет remove элемент . Элемент remove эффективно удаляет ссылку на элемент, определенный add в родительских файлах конфигурации на более высоких уровнях иерархии, но не удаляет его.

Применяется к

См. также раздел