CustomErrorCollection.Add(CustomError) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에 CustomError 개체를 추가합니다.
public:
void Add(System::Web::Configuration::CustomError ^ customError);
public void Add (System.Web.Configuration.CustomError customError);
member this.Add : System.Web.Configuration.CustomError -> unit
Public Sub Add (customError As CustomError)
매개 변수
- customError
- CustomError
추가할 CustomError 개체가 이미 컬렉션에 있거나 컬렉션이 읽기 전용입니다.
예제
다음 코드 예제에서는 추가 CustomError 개체는 CustomErrorCollection 컬렉션입니다.
코드 예제에서는 참조는 CustomErrorCollection 클래스 항목 컬렉션을 가져오는 방법을 알아봅니다.
// Using the Add method.
CustomError newCustomError2 =
new CustomError(404, "customerror404.htm");
// Update the configuration file.
if (!customErrorsSection.SectionInformation.IsLocked)
{
// Add the new custom error to the collection.
customErrorsCollection.Add(newCustomError2);
configuration.Save();
}
' Using the Add method.
Dim newCustomError2 _
As New CustomError(404, "customerror404.htm")
' Update the configuration file.
If Not customErrorsSection.SectionInformation.IsLocked Then
' Add the new custom error to the collection.
customErrorsCollection.Add(newCustomError2)
configuration.Save()
End If
설명
사용자 지정 오류를 컬렉션에 추가 하기 전에 만들어야 합니다는 CustomError 오류 개체 및 초기화 합니다 Redirect 및 StatusCode 속성입니다.