HttpHeadAttribute Class

Specifies that the HTTP request must be the HTTP HEAD method.

Inheritance Hierarchy

System.Object
  System.Attribute
    System.Web.Mvc.ActionMethodSelectorAttribute
      System.Web.Mvc.HttpHeadAttribute

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
<AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple := False, Inherited := True)> _
Public NotInheritable Class HttpHeadAttribute _
    Inherits ActionMethodSelectorAttribute
'Usage
Dim instance As HttpHeadAttribute
[AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public sealed class HttpHeadAttribute : ActionMethodSelectorAttribute
[AttributeUsageAttribute(AttributeTargets::Method, AllowMultiple = false, Inherited = true)]
public ref class HttpHeadAttribute sealed : public ActionMethodSelectorAttribute
[<SealedAttribute>]
[<AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple = false, Inherited = true)>]
type HttpHeadAttribute =  
    class 
        inherit ActionMethodSelectorAttribute 
    end
public final class HttpHeadAttribute extends ActionMethodSelectorAttribute

The HttpHeadAttribute type exposes the following members.

Constructors

  Name Description
Public method HttpHeadAttribute Initializes a new instance of the HttpHeadAttribute class.

Top

Properties

  Name Description
Public property TypeId (Inherited from Attribute.)

Top

Methods

  Name Description
Public method Equals (Inherited from Attribute.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Attribute.)
Public method GetType (Inherited from Object.)
Public method IsDefaultAttribute (Inherited from Attribute.)
Public method IsValidForRequest Determines whether a request is a valid HTTP HEAD request. (Overrides ActionMethodSelectorAttribute.IsValidForRequest(ControllerContext, MethodInfo).)
Public method Match (Inherited from Attribute.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

Explicit Interface Implementations

  Name Description
Explicit interface implemetationPrivate method _Attribute.GetIDsOfNames (Inherited from Attribute.)
Explicit interface implemetationPrivate method _Attribute.GetTypeInfo (Inherited from Attribute.)
Explicit interface implemetationPrivate method _Attribute.GetTypeInfoCount (Inherited from Attribute.)
Explicit interface implemetationPrivate method _Attribute.Invoke (Inherited from Attribute.)

Top

Remarks

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

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Web.Mvc Namespace