HttpMethodMetadata Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
HttpMethodMetadata(IEnumerable<String>) |
Initialise une nouvelle instance de la classe HttpMethodMetadata. |
HttpMethodMetadata(IEnumerable<String>, Boolean) |
Initialise une nouvelle instance de la classe HttpMethodMetadata. |
HttpMethodMetadata(IEnumerable<String>)
- Source:
- HttpMethodMetadata.cs
- Source:
- HttpMethodMetadata.cs
Initialise une nouvelle instance de la classe 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))
Paramètres
- httpMethods
- IEnumerable<String>
Méthodes HTTP utilisées pendant le routage. Une collection vide signifie que toute méthode HTTP est acceptée.
S’applique à
HttpMethodMetadata(IEnumerable<String>, Boolean)
- Source:
- HttpMethodMetadata.cs
- Source:
- HttpMethodMetadata.cs
Initialise une nouvelle instance de la classe 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)
Paramètres
- httpMethods
- IEnumerable<String>
Méthodes HTTP utilisées pendant le routage. Une collection vide signifie que toute méthode HTTP est acceptée.
- acceptCorsPreflight
- Boolean
Valeur indiquant si le routage accepte les demandes de contrôle préalable CORS.