HttpGetAttribute Class

Definition

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

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

Constructors

HttpGetAttribute()

Initializes a new instance of the HttpGetAttribute class.

Methods

IsValidForRequest(ControllerContext, MethodInfo)

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

Applies to