ActionExecutedContext Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ActionExecutedContext() |
Initializes a new instance of the ActionExecutedContext class. |
ActionExecutedContext(ControllerContext, ActionDescriptor, Boolean, Exception) |
Initializes a new instance of the ActionExecutedContext class. |
ActionExecutedContext()
Initializes a new instance of the ActionExecutedContext class.
public ActionExecutedContext();
Public Sub New ()
Applies to
ActionExecutedContext(ControllerContext, ActionDescriptor, Boolean, Exception)
Initializes a new instance of the ActionExecutedContext class.
public ActionExecutedContext(System.Web.Mvc.ControllerContext controllerContext, System.Web.Mvc.ActionDescriptor actionDescriptor, bool canceled, Exception exception);
new System.Web.Mvc.ActionExecutedContext : System.Web.Mvc.ControllerContext * System.Web.Mvc.ActionDescriptor * bool * Exception -> System.Web.Mvc.ActionExecutedContext
Public Sub New (controllerContext As ControllerContext, actionDescriptor As ActionDescriptor, canceled As Boolean, exception As Exception)
Parameters
- controllerContext
- ControllerContext
The controller context.
- actionDescriptor
- ActionDescriptor
The action method descriptor.
- canceled
- Boolean
true if the action is canceled.
- exception
- Exception
The exception object.
Exceptions
The actionDescriptor
parameter is null.