RemoteAttribute Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
RemoteAttribute() |
Inicializa uma nova instância da classe RemoteAttribute. |
RemoteAttribute(String) |
Inicializa uma nova instância da classe RemoteAttribute. |
RemoteAttribute(String, String) |
Inicializa uma nova instância da classe RemoteAttribute. |
RemoteAttribute(String, String, String) |
Inicializa uma nova instância da classe RemoteAttribute. |
RemoteAttribute()
- Origem:
- RemoteAttribute.cs
- Origem:
- RemoteAttribute.cs
- Origem:
- RemoteAttribute.cs
Inicializa uma nova instância da classe RemoteAttribute.
protected:
RemoteAttribute();
protected RemoteAttribute ();
Protected Sub New ()
Comentários
Destinado a subclasses que dão suporte à geração de URL sem nomes de rota, ação ou controlador.
Aplica-se a
RemoteAttribute(String)
- Origem:
- RemoteAttribute.cs
- Origem:
- RemoteAttribute.cs
- Origem:
- RemoteAttribute.cs
Inicializa uma nova instância da classe 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)
Parâmetros
- routeName
- String
O nome da rota usado ao gerar a URL em que o cliente deve enviar uma solicitação de validação.
Comentários
Localiza o routeName
em qualquer área do aplicativo.
Aplica-se a
RemoteAttribute(String, String)
- Origem:
- RemoteAttribute.cs
- Origem:
- RemoteAttribute.cs
- Origem:
- RemoteAttribute.cs
Inicializa uma nova instância da classe 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)
Parâmetros
- action
- String
O nome da ação usado ao gerar a URL em que o cliente deve enviar uma solicitação de validação.
- controller
- String
O nome do controlador usado ao gerar a URL em que o cliente deve enviar uma solicitação de validação.
Comentários
Se ou action
controller
for null
, usará o valor de ambiente correspondente.
Localiza o controller
na área atual.
Aplica-se a
RemoteAttribute(String, String, String)
- Origem:
- RemoteAttribute.cs
- Origem:
- RemoteAttribute.cs
- Origem:
- RemoteAttribute.cs
Inicializa uma nova instância da classe 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)
Parâmetros
- action
- String
O nome da ação usado ao gerar a URL em que o cliente deve enviar uma solicitação de validação.
- controller
- String
O nome do controlador usado ao gerar a URL em que o cliente deve enviar uma solicitação de validação.
- areaName
- String
O nome da área que contém o controller
.
Comentários
Se ou action
controller
for null
, usará o valor de ambiente correspondente.
Se areaName
for null
, localizará o controller
na área raiz. Use a RemoteAttribute(String, String) sobrecarga para localizar o controller
na área atual. Ou passe explicitamente o nome da área atual como o areaName
argumento para essa sobrecarga.