Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Initializes a new instance of the ActionExecutingContext class by using the specified controller context, action descriptor, and action-method parameters.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Sub New ( _
controllerContext As ControllerContext, _
actionDescriptor As ActionDescriptor, _
actionParameters As IDictionary(Of String, Object) _
)
public ActionExecutingContext(
ControllerContext controllerContext,
ActionDescriptor actionDescriptor,
IDictionary<string, Object> actionParameters
)
public:
ActionExecutingContext(
ControllerContext^ controllerContext,
ActionDescriptor^ actionDescriptor,
IDictionary<String^, Object^>^ actionParameters
)
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<String, Object>
The action-method parameters.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | The ActionParameters or actionDescriptor parameter is null reference (Nothing in Visual Basic). |