HttpOptionsAttribute Class

Definition

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

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

Constructors

HttpOptionsAttribute()

Initializes a new instance of the HttpOptionsAttribute class.

Methods

IsValidForRequest(ControllerContext, MethodInfo)

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

Applies to