ActionMethodSelectorAttribute.IsValidForRequest Method

Definition

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

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

Parameters

controllerContext
ControllerContext

The controller context.

methodInfo
MethodInfo

Information about the action method.

Returns

true if the action method selection is valid for the specified controller context; otherwise, false.

Applies to