ActionExecutedContext Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
ActionExecutedContext() |
Initialisiert eine neue Instanz der ActionExecutedContext-Klasse. |
ActionExecutedContext(ControllerContext, ActionDescriptor, Boolean, Exception) |
Initialisiert eine neue Instanz der ActionExecutedContext-Klasse. |
ActionExecutedContext()
Initialisiert eine neue Instanz der ActionExecutedContext-Klasse.
public ActionExecutedContext ();
Public Sub New ()
Gilt für:
ActionExecutedContext(ControllerContext, ActionDescriptor, Boolean, Exception)
Initialisiert eine neue Instanz der ActionExecutedContext-Klasse.
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)
Parameter
- controllerContext
- ControllerContext
Der Controllerkontext.
- actionDescriptor
- ActionDescriptor
Der Aktionsmethodendeskriptor.
- canceled
- Boolean
TRUE, wenn die Aktion abgebrochen wird.
- exception
- Exception
das Ausnahmeobjekt.
Ausnahmen
Der actionDescriptor
-Parameter ist null.