Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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)
Syntax
'Declaration
Public Overrides Function IsValidName ( _
controllerContext As ControllerContext, _
actionName As String, _
methodInfo As MethodInfo _
) As Boolean
public override bool IsValidName(
ControllerContext controllerContext,
string actionName,
MethodInfo methodInfo
)
public:
virtual bool IsValidName(
ControllerContext^ controllerContext,
String^ actionName,
MethodInfo^ methodInfo
) override
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.Boolean
true if the action name is valid within the specified controller context; otherwise, false.