ActionExecutedContext Constructor (ControllerContext, ActionDescriptor, Boolean, Exception)

Initializes a new instance of the ActionExecutedContext class.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

'Declaration
Public Sub New ( _
	controllerContext As ControllerContext, _
	actionDescriptor As ActionDescriptor, _
	canceled As Boolean, _
	exception As Exception _
)
'Usage
Dim controllerContext As ControllerContext 
Dim actionDescriptor As ActionDescriptor 
Dim canceled As Boolean 
Dim exception As Exception 

Dim instance As New ActionExecutedContext(controllerContext, _
	actionDescriptor, canceled, exception)

Parameters

controllerContext
Type: System.Web.Mvc.ControllerContext

The controller context.

actionDescriptor
Type: System.Web.Mvc.ActionDescriptor

The action method descriptor.

canceled
Type: System.Boolean

true if the action is canceled.

exception
Type: System.Exception

The exception object.

ExceptionCondition
ArgumentNullException

The actionDescriptor parameter is Nothing.

Show: