NonActionAttribute::IsValidForRequest Method

Visual Studio 2010

Determines whether the attribute marks a method that is not an action method by using the specified controller context.

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

public:
virtual bool IsValidForRequest(
	ControllerContext^ controllerContext, 
	MethodInfo^ methodInfo
) override

Parameters

controllerContext
Type: System.Web.Mvc::ControllerContext
The controller context.
methodInfo
Type: System.Reflection::MethodInfo
The method information.

Return Value

Type: System::Boolean
true if the attribute marks a valid non-action method; otherwise, false.

You must override this method in order to define a valid method for your purposes. Otherwise, this method always returns false.

Community Additions

ADD
Show: