London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface IUnknownActionHandler

Handles actions without an action method in page controllers.

Namespace: EPiServer.Web.Mvc
Assembly: EPiServer.dll
Version: 10.10.4
Syntax
public interface IUnknownActionHandler

Properties

ActionName

The action this action handler handles.

Declaration
string ActionName { get; }
Property Value
Type Description
System.String

Methods

HandleAction(Controller)

Handles unknown action when an action hasn't been found by the controller

Declaration
ActionResult HandleAction(Controller controller)
Parameters
Type Name Description
System.Web.Mvc.Controller controller

The controller

Returns
Type Description
System.Web.Mvc.ActionResult

ActionResult if handled otherwise null

Extension Methods