HttpDeleteAttribute Class

Definition

Represents an attribute that is used to restrict an action method so that the method handles only HTTP DELETE requests.

[System.AttributeUsage(System.AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
public sealed class HttpDeleteAttribute : System.Web.Mvc.ActionMethodSelectorAttribute
type HttpDeleteAttribute = class
    inherit ActionMethodSelectorAttribute
Public NotInheritable Class HttpDeleteAttribute
Inherits ActionMethodSelectorAttribute
Inheritance
Attributes

Constructors

HttpDeleteAttribute()

Initializes a new instance of the HttpDeleteAttribute class.

Methods

IsValidForRequest(ControllerContext, MethodInfo)

Determines whether the action method delete request is valid for the specified controller context.

Applies to