CustomError.Redirect 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
리디렉션 URL을 가져오거나 설정합니다.
public:
property System::String ^ Redirect { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("redirect", IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Redirect { get; set; }
[<System.Configuration.ConfigurationProperty("redirect", IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Redirect : string with get, set
Public Property Redirect As String
속성 값
오류가 발생했을 때 애플리케이션을 리디렉션할 URL입니다.
- 특성
예제
다음 코드 예제에는 리디렉션 URL을 사용 하는 방법을 보여 줍니다. 코드 예제에서는 참조는 CustomError 클래스 항목 컬렉션을 가져오는 방법을 알아봅니다.
// Get first errorr Redirect.
CustomError currentError0 =
customErrorsCollection[0];
string currentRedirect =
currentError0.Redirect;
// Set first error Redirect.
currentError0.Redirect =
"customError404.htm";
' Get first errorr Redirect.
Dim currentError0 As CustomError = _
customErrorsCollection(0)
Dim currentRedirect As String = _
currentError0.Redirect
' Set first error Redirect.
currentError0.Redirect = "customError404.htm"
설명
Redirect 속성은 특정 오류와 연결 된 사용자 지정 페이지의 URL을 식별 합니다.