RedirectToActionResult 생성자

정의

오버로드

RedirectToActionResult(String, String, Object)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

RedirectToActionResult(String, String, Object, Boolean)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

RedirectToActionResult(String, String, Object, String)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

RedirectToActionResult(String, String, Object, Boolean, Boolean)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

RedirectToActionResult(String, String, Object, Boolean, String)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

RedirectToActionResult(String, String, Object, Boolean, Boolean, String)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

RedirectToActionResult(String, String, Object)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

public:
 RedirectToActionResult(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues);
public RedirectToActionResult (string actionName, string controllerName, object routeValues);
public RedirectToActionResult (string? actionName, string? controllerName, object? routeValues);
new Microsoft.AspNetCore.Mvc.RedirectToActionResult : string * string * obj -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Sub New (actionName As String, controllerName As String, routeValues As Object)

매개 변수

actionName
String

URL을 생성하는 데 사용할 작업의 이름입니다.

controllerName
String

URL을 생성하는 데 사용할 컨트롤러의 이름입니다.

routeValues
Object

URL을 생성하는 데 사용되는 경로 데이터입니다.

적용 대상

RedirectToActionResult(String, String, Object, Boolean)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

public:
 RedirectToActionResult(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, bool permanent);
public RedirectToActionResult (string actionName, string controllerName, object routeValues, bool permanent);
public RedirectToActionResult (string? actionName, string? controllerName, object? routeValues, bool permanent);
new Microsoft.AspNetCore.Mvc.RedirectToActionResult : string * string * obj * bool -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Sub New (actionName As String, controllerName As String, routeValues As Object, permanent As Boolean)

매개 변수

actionName
String

URL을 생성하는 데 사용할 작업의 이름입니다.

controllerName
String

URL을 생성하는 데 사용할 컨트롤러의 이름입니다.

routeValues
Object

URL을 생성하는 데 사용되는 경로 데이터입니다.

permanent
Boolean

true로 설정하면 리디렉션을 영구적으로 만듭니다(301). 그렇지 않으면 임시 리디렉션이 사용됩니다(302).

적용 대상

RedirectToActionResult(String, String, Object, String)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

public:
 RedirectToActionResult(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, System::String ^ fragment);
public RedirectToActionResult (string actionName, string controllerName, object routeValues, string fragment);
public RedirectToActionResult (string? actionName, string? controllerName, object? routeValues, string? fragment);
new Microsoft.AspNetCore.Mvc.RedirectToActionResult : string * string * obj * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Sub New (actionName As String, controllerName As String, routeValues As Object, fragment As String)

매개 변수

actionName
String

URL을 생성하는 데 사용할 작업의 이름입니다.

controllerName
String

URL을 생성하는 데 사용할 컨트롤러의 이름입니다.

routeValues
Object

URL을 생성하는 데 사용되는 경로 데이터입니다.

fragment
String

URL에 추가할 조각입니다.

적용 대상

RedirectToActionResult(String, String, Object, Boolean, Boolean)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

public:
 RedirectToActionResult(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, bool permanent, bool preserveMethod);
public RedirectToActionResult (string actionName, string controllerName, object routeValues, bool permanent, bool preserveMethod);
public RedirectToActionResult (string? actionName, string? controllerName, object? routeValues, bool permanent, bool preserveMethod);
new Microsoft.AspNetCore.Mvc.RedirectToActionResult : string * string * obj * bool * bool -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Sub New (actionName As String, controllerName As String, routeValues As Object, permanent As Boolean, preserveMethod As Boolean)

매개 변수

actionName
String

URL을 생성하는 데 사용할 작업의 이름입니다.

controllerName
String

URL을 생성하는 데 사용할 컨트롤러의 이름입니다.

routeValues
Object

URL을 생성하는 데 사용되는 경로 데이터입니다.

permanent
Boolean

true로 설정하면 리디렉션을 영구적으로 만듭니다(301). 그렇지 않으면 임시 리디렉션이 사용됩니다(302).

preserveMethod
Boolean

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

적용 대상

RedirectToActionResult(String, String, Object, Boolean, String)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

public:
 RedirectToActionResult(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, bool permanent, System::String ^ fragment);
public RedirectToActionResult (string actionName, string controllerName, object routeValues, bool permanent, string fragment);
public RedirectToActionResult (string? actionName, string? controllerName, object? routeValues, bool permanent, string? fragment);
new Microsoft.AspNetCore.Mvc.RedirectToActionResult : string * string * obj * bool * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Sub New (actionName As String, controllerName As String, routeValues As Object, permanent As Boolean, fragment As String)

매개 변수

actionName
String

URL을 생성하는 데 사용할 작업의 이름입니다.

controllerName
String

URL을 생성하는 데 사용할 컨트롤러의 이름입니다.

routeValues
Object

URL을 생성하는 데 사용되는 경로 데이터입니다.

permanent
Boolean

true로 설정하면 리디렉션을 영구적으로 만듭니다(301). 그렇지 않으면 임시 리디렉션이 사용됩니다(302).

fragment
String

URL에 추가할 조각입니다.

적용 대상

RedirectToActionResult(String, String, Object, Boolean, Boolean, String)

제공된 값을 사용하여 의 RedirectToActionResult 새 instance 초기화합니다.

public:
 RedirectToActionResult(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, bool permanent, bool preserveMethod, System::String ^ fragment);
public RedirectToActionResult (string actionName, string controllerName, object routeValues, bool permanent, bool preserveMethod, string fragment);
public RedirectToActionResult (string? actionName, string? controllerName, object? routeValues, bool permanent, bool preserveMethod, string? fragment);
new Microsoft.AspNetCore.Mvc.RedirectToActionResult : string * string * obj * bool * bool * string -> Microsoft.AspNetCore.Mvc.RedirectToActionResult
Public Sub New (actionName As String, controllerName As String, routeValues As Object, permanent As Boolean, preserveMethod As Boolean, fragment As String)

매개 변수

actionName
String

URL을 생성하는 데 사용할 작업의 이름입니다.

controllerName
String

URL을 생성하는 데 사용할 컨트롤러의 이름입니다.

routeValues
Object

URL을 생성하는 데 사용되는 경로 데이터입니다.

permanent
Boolean

true로 설정하면 리디렉션을 영구적으로 만듭니다(301). 그렇지 않으면 임시 리디렉션이 사용됩니다(302).

preserveMethod
Boolean

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

fragment
String

URL에 추가할 조각입니다.

적용 대상