RemoteAttribute 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
RemoteAttribute() |
RemoteAttribute 클래스의 새 인스턴스를 초기화합니다. |
RemoteAttribute(String) |
RemoteAttribute 클래스의 새 인스턴스를 초기화합니다. |
RemoteAttribute(String, String) |
RemoteAttribute 클래스의 새 인스턴스를 초기화합니다. |
RemoteAttribute(String, String, String) |
RemoteAttribute 클래스의 새 인스턴스를 초기화합니다. |
RemoteAttribute()
- Source:
- RemoteAttribute.cs
- Source:
- RemoteAttribute.cs
- Source:
- RemoteAttribute.cs
RemoteAttribute 클래스의 새 인스턴스를 초기화합니다.
protected:
RemoteAttribute();
protected RemoteAttribute ();
Protected Sub New ()
설명
경로, 작업 또는 컨트롤러 이름이 없는 URL 생성을 지원하는 서브클래스를 위한 것입니다.
적용 대상
RemoteAttribute(String)
- Source:
- RemoteAttribute.cs
- Source:
- RemoteAttribute.cs
- Source:
- RemoteAttribute.cs
RemoteAttribute 클래스의 새 인스턴스를 초기화합니다.
public:
RemoteAttribute(System::String ^ routeName);
public RemoteAttribute (string routeName);
new Microsoft.AspNetCore.Mvc.RemoteAttribute : string -> Microsoft.AspNetCore.Mvc.RemoteAttribute
Public Sub New (routeName As String)
매개 변수
- routeName
- String
클라이언트가 유효성 검사 요청을 보내야 하는 URL을 생성할 때 사용되는 경로 이름입니다.
설명
routeName
애플리케이션의 모든 영역에서 을 찾습니다.
적용 대상
RemoteAttribute(String, String)
- Source:
- RemoteAttribute.cs
- Source:
- RemoteAttribute.cs
- Source:
- RemoteAttribute.cs
RemoteAttribute 클래스의 새 인스턴스를 초기화합니다.
public:
RemoteAttribute(System::String ^ action, System::String ^ controller);
public RemoteAttribute (string action, string controller);
new Microsoft.AspNetCore.Mvc.RemoteAttribute : string * string -> Microsoft.AspNetCore.Mvc.RemoteAttribute
Public Sub New (action As String, controller As String)
매개 변수
- action
- String
클라이언트가 유효성 검사 요청을 보내야 하는 URL을 생성할 때 사용되는 작업 이름입니다.
- controller
- String
클라이언트가 유효성 검사 요청을 보내야 하는 URL을 생성할 때 사용되는 컨트롤러 이름입니다.
설명
action
또는 controller
가 인 null
경우 해당 앰비언트 값을 사용합니다.
controller
현재 영역에서 을 찾습니다.
적용 대상
RemoteAttribute(String, String, String)
- Source:
- RemoteAttribute.cs
- Source:
- RemoteAttribute.cs
- Source:
- RemoteAttribute.cs
RemoteAttribute 클래스의 새 인스턴스를 초기화합니다.
public:
RemoteAttribute(System::String ^ action, System::String ^ controller, System::String ^ areaName);
public RemoteAttribute (string action, string controller, string areaName);
new Microsoft.AspNetCore.Mvc.RemoteAttribute : string * string * string -> Microsoft.AspNetCore.Mvc.RemoteAttribute
Public Sub New (action As String, controller As String, areaName As String)
매개 변수
- action
- String
클라이언트가 유효성 검사 요청을 보내야 하는 URL을 생성할 때 사용되는 작업 이름입니다.
- controller
- String
클라이언트가 유효성 검사 요청을 보내야 하는 URL을 생성할 때 사용되는 컨트롤러 이름입니다.
- areaName
- String
를 포함하는 영역의 이름입니다 controller
.
설명
action
또는 controller
가 인 null
경우 해당 앰비언트 값을 사용합니다.
가 이null
면 areaName
루트 영역에서 를 찾 controller
습니다. 오버로드를 RemoteAttribute(String, String) 사용하여 현재 영역에서 를 controller
찾습니다. 또는 현재 영역의 이름을 이 오버로드에 areaName
대한 인수로 명시적으로 전달합니다.