HttpMethodAttribute Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
HttpMethodAttribute(IEnumerable<String>) |
Crea un nuevo HttpMethodAttribute con el conjunto especificado de métodos HTTP. |
HttpMethodAttribute(IEnumerable<String>, String) |
Crea un nuevo HttpMethodAttribute con el conjunto especificado de métodos HTTP en una plantilla de ruta determinada. |
HttpMethodAttribute(IEnumerable<String>)
- Source:
- HttpMethodAttribute.cs
- Source:
- HttpMethodAttribute.cs
- Source:
- HttpMethodAttribute.cs
Crea un nuevo HttpMethodAttribute con el conjunto especificado de métodos HTTP.
public:
HttpMethodAttribute(System::Collections::Generic::IEnumerable<System::String ^> ^ httpMethods);
public HttpMethodAttribute (System.Collections.Generic.IEnumerable<string> httpMethods);
new Microsoft.AspNetCore.Mvc.Routing.HttpMethodAttribute : seq<string> -> Microsoft.AspNetCore.Mvc.Routing.HttpMethodAttribute
Public Sub New (httpMethods As IEnumerable(Of String))
Parámetros
- httpMethods
- IEnumerable<String>
Se aplica a
HttpMethodAttribute(IEnumerable<String>, String)
- Source:
- HttpMethodAttribute.cs
- Source:
- HttpMethodAttribute.cs
- Source:
- HttpMethodAttribute.cs
Crea un nuevo HttpMethodAttribute con el conjunto especificado de métodos HTTP en una plantilla de ruta determinada.
public:
HttpMethodAttribute(System::Collections::Generic::IEnumerable<System::String ^> ^ httpMethods, System::String ^ template);
public HttpMethodAttribute (System.Collections.Generic.IEnumerable<string> httpMethods, string template);
public HttpMethodAttribute (System.Collections.Generic.IEnumerable<string> httpMethods, string? template);
new Microsoft.AspNetCore.Mvc.Routing.HttpMethodAttribute : seq<string> * string -> Microsoft.AspNetCore.Mvc.Routing.HttpMethodAttribute
Public Sub New (httpMethods As IEnumerable(Of String), template As String)
Parámetros
- httpMethods
- IEnumerable<String>
Conjunto de métodos admitidos. No puede ser null.
- template
- String
Plantilla de la ruta.