次の方法で共有


HttpMethodAttribute コンストラクター

定義

オーバーロード

HttpMethodAttribute(IEnumerable<String>)

指定された HTTP メソッドのセットを使用して新しい HttpMethodAttribute を作成します。

HttpMethodAttribute(IEnumerable<String>, String)

指定されたルート テンプレートを指定した HTTP メソッドのセットを使用して、新しい HttpMethodAttribute を作成します。

HttpMethodAttribute(IEnumerable<String>)

ソース:
HttpMethodAttribute.cs
ソース:
HttpMethodAttribute.cs
ソース:
HttpMethodAttribute.cs

指定された HTTP メソッドのセットを使用して新しい HttpMethodAttribute を作成します。

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

パラメーター

httpMethods
IEnumerable<String>

適用対象

HttpMethodAttribute(IEnumerable<String>, String)

ソース:
HttpMethodAttribute.cs
ソース:
HttpMethodAttribute.cs
ソース:
HttpMethodAttribute.cs

指定されたルート テンプレートを指定した HTTP メソッドのセットを使用して、新しい HttpMethodAttribute を作成します。

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)

パラメーター

httpMethods
IEnumerable<String>

サポートされているメソッドのセット。 null は指定できません。

template
String

ルート テンプレート。

適用対象