HttpMethodMetadata コンストラクター

定義

オーバーロード

HttpMethodMetadata(IEnumerable<String>)

HttpMethodMetadata クラスの新しいインスタンスを初期化します。

HttpMethodMetadata(IEnumerable<String>, Boolean)

HttpMethodMetadata クラスの新しいインスタンスを初期化します。

HttpMethodMetadata(IEnumerable<String>)

ソース:
HttpMethodMetadata.cs
ソース:
HttpMethodMetadata.cs

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))

パラメーター

httpMethods
IEnumerable<String>

ルーティング中に使用される HTTP メソッド。 空のコレクションは、任意の HTTP メソッドを受け入れることを意味します。

適用対象

HttpMethodMetadata(IEnumerable<String>, Boolean)

ソース:
HttpMethodMetadata.cs
ソース:
HttpMethodMetadata.cs

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)

パラメーター

httpMethods
IEnumerable<String>

ルーティング中に使用される HTTP メソッド。 空のコレクションは、任意の HTTP メソッドを受け入れることを意味します。

acceptCorsPreflight
Boolean

ルーティングが CORS プレフライト要求を受け入れるかどうかを示す値。

適用対象