다음을 통해 공유


CustomErrorCollection.Remove(String) 메서드

정의

컬렉션에서 CustomError 개체를 제거합니다.

public:
 void Remove(System::String ^ statusCode);
public void Remove (string statusCode);
member this.Remove : string -> unit
Public Sub Remove (statusCode As String)

매개 변수

statusCode
String

사용자 지정 오류와 관련된 HTTP 상태 코드입니다.

예제

다음 코드 예제를 제거 하는 방법을 보여 줍니다는 CustomError 지정된 된 상태 코드를 사용 하 여 개체입니다. 코드 예제에서는 참조는 CustomErrorCollection 클래스 항목 컬렉션을 가져오는 방법을 알아봅니다.

// Using the Remove method.
if (!customErrorsSection.SectionInformation.IsLocked)
{
    // Remove the error with statuscode 404.
    customErrorsCollection.Remove("404");
    configuration.Save();
}
' Using the Remove method.
If Not customErrorsSection.SectionInformation.IsLocked Then
   ' Remove the error with statuscode 404.
   customErrorsCollection.Remove("404")
   configuration.Save()
End If

설명

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

참고

add 요소는 부모 구성 파일에서 삭제 되지 않습니다. remove 요소에서 단순히 비활성화 됩니다. 그러나는 Remove 메서드 요소를 실제로 삭제에서 현재 계층 구조 수준입니다.

적용 대상