RemoteAttribute 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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(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루트에서 컨트롤러를 찾습니다. 그렇지 않으면 현재 영역에서 찾습니다.