ActionNameAttribute.IsValidName(ControllerContext, String, MethodInfo) Method

Definition

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

public override bool IsValidName (System.Web.Mvc.ControllerContext controllerContext, string actionName, System.Reflection.MethodInfo methodInfo);
override this.IsValidName : System.Web.Mvc.ControllerContext * string * System.Reflection.MethodInfo -> bool
Public Overrides 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 within the specified controller context; otherwise, false.

Applies to