Compartir a través de


ApiConventionMethodAttribute(Type, String) Constructor

Definición

Inicializa una ApiConventionMethodAttribute instancia mediante conventionType y el especificado 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)

Parámetros

conventionType
Type

de Type la convención.

Las convenciones deben ser tipos estáticos. Los métodos de una convención se coinciden con un método de acción mediante reglas especificadas por ApiConventionNameMatchAttribute que se pueden aplicar a un nombre de método o a sus parámetros y ApiConventionTypeMatchAttribute que se aplican a parámetros.

methodName
String

El nombre del método.

Se aplica a