HttpMethodAttribute 类

定义

标识支持一组给定 HTTP 方法的操作。

public ref class HttpMethodAttribute abstract : Attribute, Microsoft::AspNetCore::Mvc::Routing::IActionHttpMethodProvider, Microsoft::AspNetCore::Mvc::Routing::IRouteTemplateProvider
[System.AttributeUsage(System.AttributeTargets.Method, AllowMultiple=true, Inherited=true)]
public abstract class HttpMethodAttribute : Attribute, Microsoft.AspNetCore.Mvc.Routing.IActionHttpMethodProvider, Microsoft.AspNetCore.Mvc.Routing.IRouteTemplateProvider
[<System.AttributeUsage(System.AttributeTargets.Method, AllowMultiple=true, Inherited=true)>]
type HttpMethodAttribute = class
    inherit Attribute
    interface IActionHttpMethodProvider
    interface IRouteTemplateProvider
Public MustInherit Class HttpMethodAttribute
Inherits Attribute
Implements IActionHttpMethodProvider, IRouteTemplateProvider
继承
HttpMethodAttribute
派生
属性
实现

构造函数

HttpMethodAttribute(IEnumerable<String>)

使用给定的 HTTP 方法集创建新的 HttpMethodAttribute

HttpMethodAttribute(IEnumerable<String>, String)

使用给定的 HTTP 方法集和给定路由模板创建新的 HttpMethodAttribute

属性

HttpMethods

此操作提供程序支持的 http 方法列表。

Name

获取路由名称。 路由名称可用于使用特定路由生成链接,而不是依赖于基于给定路由值集的路由选择。

Order

获取路线顺序。 顺序确定路由执行的顺序。 首先尝试顺序值较低的路由。 当路由未指定值时,它会获取 的值 Order ,如果 RouteAttribute 未在控制器上定义值,则获取默认值 0。

Template

路由模板。 可为 null

显式接口实现

IRouteTemplateProvider.Order

获取路线顺序。 顺序确定路由执行的顺序。 首先尝试顺序值较低的路由。 当路由未指定值时,它将获取默认值 0。 Order 属性的 null 值表示用户未为路由指定显式顺序。

适用于