ActionSelector Delegate
Represents a delegate that contains the logic for selecting an action method.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Public Delegate Function ActionSelector ( _ controllerContext As ControllerContext _ ) As Boolean 'Usage Dim instance As New ActionSelector(AddressOf HandlerMethod)
Parameters
- controllerContext
- Type: System.Web.Mvc.ControllerContext
The current HTTP request context.
Return Value
Type: System.Booleantrue if an action method was successfully selected; otherwise, false.
Show: