CustomErrorCollection.RemoveAt(Int32) 方法

定义

从集合中移除位于指定索引位置的 CustomError 对象。

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

参数

index
Int32

要移除的 CustomError 对象的集合索引。

示例

下面的代码示例演示如何删除 CustomError 指定索引处的对象。 请参阅类主题中的 CustomErrorCollection 代码示例,了解如何获取集合。

// Using method RemoveAt.
if (!customErrorsSection.SectionInformation.IsLocked)
{
    // Remove the error at 0 index
    customErrorsCollection.RemoveAt(0);
    configuration.Save();
}
' Using method RemoveAt.
If Not customErrorsSection.SectionInformation.IsLocked Then
   ' Remove the error at 0 index
   customErrorsCollection.RemoveAt(0)
   configuration.Save()
End If

注解

该方法 RemoveAtremove 元素 customErrors 插入到当前层次结构级别的配置文件节中。 这是删除对层次结构中较高级别父配置文件中定义的元素的引用 add

注意add元素不会从父配置文件中删除。 它们只是被停用。 但是,该方法 RemoveAt 实际上在当前层次结构级别删除它们。

适用于