LocalRedirectResult 생성자

정의

오버로드

LocalRedirectResult(String)

제공된 값을 사용하여 LocalRedirectResult 클래스의 새 인스턴스를 초기화합니다.

LocalRedirectResult(String, Boolean)

제공된 값을 사용하여 LocalRedirectResult 클래스의 새 인스턴스를 초기화합니다.

LocalRedirectResult(String, Boolean, Boolean)

제공된 값을 사용하여 LocalRedirectResult 클래스의 새 인스턴스를 초기화합니다.

LocalRedirectResult(String)

Source:
LocalRedirectResult.cs
Source:
LocalRedirectResult.cs

제공된 값을 사용하여 LocalRedirectResult 클래스의 새 인스턴스를 초기화합니다.

public:
 LocalRedirectResult(System::String ^ localUrl);
public LocalRedirectResult (string localUrl);
new Microsoft.AspNetCore.Mvc.LocalRedirectResult : string -> Microsoft.AspNetCore.Mvc.LocalRedirectResult
Public Sub New (localUrl As String)

매개 변수

localUrl
String

리디렉션할 로컬 URL입니다.

적용 대상

LocalRedirectResult(String, Boolean)

Source:
LocalRedirectResult.cs
Source:
LocalRedirectResult.cs

제공된 값을 사용하여 LocalRedirectResult 클래스의 새 인스턴스를 초기화합니다.

public:
 LocalRedirectResult(System::String ^ localUrl, bool permanent);
public LocalRedirectResult (string localUrl, bool permanent);
new Microsoft.AspNetCore.Mvc.LocalRedirectResult : string * bool -> Microsoft.AspNetCore.Mvc.LocalRedirectResult
Public Sub New (localUrl As String, permanent As Boolean)

매개 변수

localUrl
String

리디렉션할 로컬 URL입니다.

permanent
Boolean

리디렉션이 영구(301) 또는 임시(302)여야 하는지 여부를 지정합니다.

적용 대상

LocalRedirectResult(String, Boolean, Boolean)

Source:
LocalRedirectResult.cs
Source:
LocalRedirectResult.cs

제공된 값을 사용하여 LocalRedirectResult 클래스의 새 인스턴스를 초기화합니다.

public:
 LocalRedirectResult(System::String ^ localUrl, bool permanent, bool preserveMethod);
public LocalRedirectResult (string localUrl, bool permanent, bool preserveMethod);
new Microsoft.AspNetCore.Mvc.LocalRedirectResult : string * bool * bool -> Microsoft.AspNetCore.Mvc.LocalRedirectResult
Public Sub New (localUrl As String, permanent As Boolean, preserveMethod As Boolean)

매개 변수

localUrl
String

리디렉션할 로컬 URL입니다.

permanent
Boolean

리디렉션이 영구(301) 또는 임시(302)여야 하는지 여부를 지정합니다.

preserveMethod
Boolean

true로 설정하면 임시 리디렉션(307) 또는 영구 리디렉션(308)을 초기 요청의 메서드를 유지합니다.

적용 대상