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 对象的集合索引。

示例

下面的代码示例从中UrlMappingCollection删除该UrlMapping对象。

请参阅类主题中的 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 层次结构中较高级别的父配置文件中定义的元素的引用,但不删除它。

适用于

另请参阅