ActionExecutingContext Constructor

 

Initializes a new instance of the ActionExecutingContext class.

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

NameDescription
System_CAPS_pubmethodActionExecutingContext()

Initializes a new instance of the ActionExecutingContext class.

System_CAPS_pubmethodActionExecutingContext(ControllerContext, ActionDescriptor, IDictionary(Of String, Object))

Initializes a new instance of the ActionExecutingContext class by using the specified controller context, action descriptor, and action-method parameters.

Return to top

ActionExecutingContext Constructor ()

Initializes a new instance of the ActionExecutingContext class.

Public Sub New
Return to top

ActionExecutingContext Constructor (ControllerContext, ActionDescriptor, IDictionary(Of String, Object))

Initializes a new instance of the ActionExecutingContext class by using the specified controller context, action descriptor, and action-method parameters.

Public Sub New (
	controllerContext As ControllerContext,
	actionDescriptor As ActionDescriptor,
	actionParameters As IDictionary(Of StringObject)
)

Parameters

controllerContext
Type: System.Web.Mvc.ControllerContext

The controller context.

actionDescriptor
Type: System.Web.Mvc.ActionDescriptor

The action descriptor.

actionParameters
Type: System.Collections.Generic.IDictionary(Of StringObject)

The action-method parameters.

Exception Condition
ArgumentNullException

The ActionParameters or actionDescriptor parameter is null.

Return to top
Show: