ApiConventionMethodAttribute(Type, String) 构造函数

定义

ApiConventionMethodAttribute使用 conventionType 和指定的 methodName初始化实例。

public:
 ApiConventionMethodAttribute(Type ^ conventionType, System::String ^ methodName);
public ApiConventionMethodAttribute (Type conventionType, string methodName);
new Microsoft.AspNetCore.Mvc.ApiConventionMethodAttribute : Type * string -> Microsoft.AspNetCore.Mvc.ApiConventionMethodAttribute
Public Sub New (conventionType As Type, methodName As String)

参数

conventionType
Type

Type约定的 。

约定必须是静态类型。 约定中的方法使用指定的 ApiConventionNameMatchAttribute 规则与操作方法匹配,这些规则可应用于方法名称或其参数,并 ApiConventionTypeMatchAttribute 应用于参数。

methodName
String

方法名称。

适用于