다음을 통해 공유


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

설명

합니다 RemoveAt 메서드 삽입을 remove 요소는 customErrors 현재 계층 구조 수준에서 구성 파일의 섹션입니다. 에 대 한 참조를 제거 하는 것이 add 상위 구성 파일에 정의 된 요소 계층 구조의 상위 수준입니다.

참고add 요소는 부모 구성 파일에서 삭제 되지 않습니다. 비활성화 되기만 합니다. 그러나는 RemoveAt 메서드 요소를 실제로 삭제에서 현재 계층 구조 수준입니다.

적용 대상