ActionNameAttribute.IsValidName Method
Determines whether the action name is valid within the specified controller context.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Public Overrides Function IsValidName ( _ controllerContext As ControllerContext, _ actionName As String, _ methodInfo As MethodInfo _ ) As Boolean 'Usage Dim instance As ActionNameAttribute Dim controllerContext As ControllerContext Dim actionName As String Dim methodInfo As MethodInfo Dim returnValue As Boolean returnValue = instance.IsValidName(controllerContext, _ actionName, methodInfo)
Parameters
- controllerContext
- Type: System.Web.Mvc.ControllerContext
The controller context.
- actionName
- Type: System.String
The name of the action.
- methodInfo
- Type: System.Reflection.MethodInfo
Information about the action method.
Return Value
Type: System.Booleantrue if the action name is valid within the specified controller context; otherwise, false.
Show: