다음을 통해 공유


CustomError.Redirect 속성

정의

리디렉션 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

속성 값

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을 식별 합니다.

적용 대상