CustomErrorCollection.Get 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정한 CustomError을 가져옵니다.
오버로드
Get(String) |
지정된 상태 코드를 가진 CustomError 개체를 가져옵니다. |
Get(Int32) |
지정된 인덱스에 있는 CustomError 개체를 가져옵니다. |
Get(String)
지정된 상태 코드를 가진 CustomError 개체를 가져옵니다.
public:
System::Web::Configuration::CustomError ^ Get(System::String ^ statusCode);
public System.Web.Configuration.CustomError Get (string statusCode);
member this.Get : string -> System.Web.Configuration.CustomError
Public Function Get (statusCode As String) As CustomError
매개 변수
- statusCode
- String
사용자 지정 오류와 관련된 HTTP 상태 코드입니다.
반환
지정된 상태 코드를 가진 CustomError 개체입니다.
예제
다음 코드 예제에서는 가져오는 방법을 보여 줍니다는 CustomError 지정된 된 상태 코드를 사용 하 여 개체입니다.
코드 예제에서는 참조는 CustomErrorCollection 클래스 항목 컬렉션을 가져오는 방법을 알아봅니다.
// Get the error with status code 404.
CustomError customError1 =
customErrorsCollection["404"];
' Get the error with status code 404.
Dim customError1 As CustomError = _
customErrorsCollection("404")
적용 대상
Get(Int32)
지정된 인덱스에 있는 CustomError 개체를 가져옵니다.
public:
System::Web::Configuration::CustomError ^ Get(int index);
public System.Web.Configuration.CustomError Get (int index);
member this.Get : int -> System.Web.Configuration.CustomError
Public Function Get (index As Integer) As CustomError
매개 변수
- index
- Int32
CustomError 개체의 컬렉션 인덱스입니다.
반환
지정된 인덱스의 CustomError입니다.
예제
다음 코드 예제에서는 가져오는 방법을 보여 줍니다는 CustomError 개체의 지정 된 컬렉션 인덱스입니다.
코드 예제에서는 참조는 CustomErrorCollection 클래스 항목 컬렉션을 가져오는 방법을 알아봅니다.
// Get the error with collection index 0.
CustomError customError =
customErrorsCollection[0];
' Get the error with collection index 0.
Dim customError As CustomError = _
customErrorsCollection(0)