HttpPostAttribute Class

Definition

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

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

Constructors

HttpPostAttribute()

Initializes a new instance of the HttpPostAttribute class.

Methods

IsValidForRequest(ControllerContext, MethodInfo)

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

Applies to