다음을 통해 공유


RemoteAttribute 생성자

정의

오버로드

RemoteAttribute()

RemoteAttribute 클래스의 새 인스턴스를 초기화합니다.

RemoteAttribute(String)

지정된 경로 이름을 사용하여 클래스의 RemoteAttribute 새 instance 초기화합니다.

RemoteAttribute(String, String)

지정된 action-method 이름 및 컨트롤러 이름을 사용하여 클래스의 RemoteAttribute 새 instance 초기화합니다.

RemoteAttribute(String, String, String)

지정된 action-method 이름, 컨트롤러 이름 및 영역 이름을 사용하여 클래스의 RemoteAttribute 새 instance 초기화합니다.

RemoteAttribute(String, String, AreaReference)

RemoteAttribute 클래스의 새 인스턴스를 초기화합니다.

RemoteAttribute()

RemoteAttribute 클래스의 새 인스턴스를 초기화합니다.

protected RemoteAttribute ();
Protected Sub New ()

적용 대상

RemoteAttribute(String)

지정된 경로 이름을 사용하여 클래스의 RemoteAttribute 새 instance 초기화합니다.

public RemoteAttribute (string routeName);
new System.Web.Mvc.RemoteAttribute : string -> System.Web.Mvc.RemoteAttribute
Public Sub New (routeName As String)

매개 변수

routeName
String

경로 이름입니다.

적용 대상

RemoteAttribute(String, String)

지정된 action-method 이름 및 컨트롤러 이름을 사용하여 클래스의 RemoteAttribute 새 instance 초기화합니다.

public RemoteAttribute (string action, string controller);
new System.Web.Mvc.RemoteAttribute : string * string -> System.Web.Mvc.RemoteAttribute
Public Sub New (action As String, controller As String)

매개 변수

action
String

작업 메서드의 이름입니다.

controller
String

컨트롤러의 이름입니다.

적용 대상

RemoteAttribute(String, String, String)

지정된 action-method 이름, 컨트롤러 이름 및 영역 이름을 사용하여 클래스의 RemoteAttribute 새 instance 초기화합니다.

public RemoteAttribute (string action, string controller, string areaName);
new System.Web.Mvc.RemoteAttribute : string * string * string -> System.Web.Mvc.RemoteAttribute
Public Sub New (action As String, controller As String, areaName As String)

매개 변수

action
String

작업 메서드의 이름입니다.

controller
String

컨트롤러의 이름입니다.

areaName
String

영역의 이름입니다.

적용 대상

RemoteAttribute(String, String, AreaReference)

RemoteAttribute 클래스의 새 인스턴스를 초기화합니다.

public RemoteAttribute (string action, string controller, System.Web.Mvc.AreaReference areaReference);
new System.Web.Mvc.RemoteAttribute : string * string * System.Web.Mvc.AreaReference -> System.Web.Mvc.RemoteAttribute
Public Sub New (action As String, controller As String, areaReference As AreaReference)

매개 변수

action
String

경로 이름입니다.

controller
String

컨트롤러의 이름입니다.

areaReference
AreaReference

인 경우 UseRoot루트에서 컨트롤러를 찾습니다. 그렇지 않으면 현재 영역에서 찾습니다.

적용 대상