Compartir a través de


HttpMethodMetadata Constructores

Definición

Sobrecargas

HttpMethodMetadata(IEnumerable<String>)

Inicializa una nueva instancia de la clase HttpMethodMetadata.

HttpMethodMetadata(IEnumerable<String>, Boolean)

Inicializa una nueva instancia de la clase HttpMethodMetadata.

HttpMethodMetadata(IEnumerable<String>)

Source:
HttpMethodMetadata.cs
Source:
HttpMethodMetadata.cs

Inicializa una nueva instancia de la clase HttpMethodMetadata.

public:
 HttpMethodMetadata(System::Collections::Generic::IEnumerable<System::String ^> ^ httpMethods);
public HttpMethodMetadata (System.Collections.Generic.IEnumerable<string> httpMethods);
new Microsoft.AspNetCore.Routing.HttpMethodMetadata : seq<string> -> Microsoft.AspNetCore.Routing.HttpMethodMetadata
Public Sub New (httpMethods As IEnumerable(Of String))

Parámetros

httpMethods
IEnumerable<String>

Métodos HTTP usados durante el enrutamiento. Una colección vacía significa que se aceptará cualquier método HTTP.

Se aplica a

HttpMethodMetadata(IEnumerable<String>, Boolean)

Source:
HttpMethodMetadata.cs
Source:
HttpMethodMetadata.cs

Inicializa una nueva instancia de la clase HttpMethodMetadata.

public:
 HttpMethodMetadata(System::Collections::Generic::IEnumerable<System::String ^> ^ httpMethods, bool acceptCorsPreflight);
public HttpMethodMetadata (System.Collections.Generic.IEnumerable<string> httpMethods, bool acceptCorsPreflight);
new Microsoft.AspNetCore.Routing.HttpMethodMetadata : seq<string> * bool -> Microsoft.AspNetCore.Routing.HttpMethodMetadata
Public Sub New (httpMethods As IEnumerable(Of String), acceptCorsPreflight As Boolean)

Parámetros

httpMethods
IEnumerable<String>

Métodos HTTP usados durante el enrutamiento. Una colección vacía significa que se aceptará cualquier método HTTP.

acceptCorsPreflight
Boolean

Valor que indica si el enrutamiento acepta solicitudes previas de CORS.

Se aplica a