HttpHeadAttribute.IsValidForRequest Method

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

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

'Declaration
Public Overrides Function IsValidForRequest ( _
	controllerContext As ControllerContext, _
	methodInfo As MethodInfo _
) As Boolean
'Usage
Dim instance As HttpHeadAttribute 
Dim controllerContext As ControllerContext 
Dim methodInfo As MethodInfo 
Dim returnValue As Boolean 

returnValue = instance.IsValidForRequest(controllerContext, _
	methodInfo)

Parameters

controllerContext
Type: System.Web.Mvc.ControllerContext
The controller context.
methodInfo
Type: System.Reflection.MethodInfo
Information about the action method.

Return Value

Type: System.Boolean
true if the action method request is valid for the specified controller context; otherwise, false.
Show: