RemoteAttribute 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
RemoteAttribute() |
初始化 RemoteAttribute 類別的新執行個體。 |
RemoteAttribute(String) |
初始化 RemoteAttribute 類別的新執行個體。 |
RemoteAttribute(String, String) |
初始化 RemoteAttribute 類別的新執行個體。 |
RemoteAttribute(String, String, String) |
初始化 RemoteAttribute 類別的新執行個體。 |
RemoteAttribute()
初始化 RemoteAttribute 類別的新執行個體。
protected:
RemoteAttribute();
protected RemoteAttribute ();
Protected Sub New ()
備註
適用于支援不使用路由、動作或控制器名稱產生 URL 的子類別。
適用於
RemoteAttribute(String)
初始化 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)
初始化 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)
初始化 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
,則使用對應的環境值。
如果 areaName
為 null
,則會 controller
在根區域中尋找 。 使用多載, RemoteAttribute(String, String) 在目前區域中尋找 controller
。 或者,將目前區域的名稱明確傳遞為 areaName
這個多載的引數。