ActionNameSelectorAttribute.IsValidName Method

Definition

Determines whether the action name is valid in the specified controller context.

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

Parameters

controllerContext
ControllerContext

The controller context.

actionName
String

The name of the action.

methodInfo
MethodInfo

Information about the action method.

Returns

true if the action name is valid in the specified controller context; otherwise, false.

Applies to