Compartir a través de


HttpMethodAttribute Constructores

Definición

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.

Se aplica a