NonActionAttribute.IsValidForRequest(ControllerContext, MethodInfo) Method

Definition

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

public override bool IsValidForRequest (System.Web.Mvc.ControllerContext controllerContext, System.Reflection.MethodInfo methodInfo);
override this.IsValidForRequest : System.Web.Mvc.ControllerContext * System.Reflection.MethodInfo -> bool
Public Overrides Function IsValidForRequest (controllerContext As ControllerContext, methodInfo As MethodInfo) As Boolean

Parameters

controllerContext
ControllerContext

The controller context.

methodInfo
MethodInfo

The method information.

Returns

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

Applies to