ActionExecutedContext 构造函数

定义

重载

ActionExecutedContext()

初始化 ActionExecutedContext 类的新实例。

ActionExecutedContext(ControllerContext, ActionDescriptor, Boolean, Exception)

初始化 ActionExecutedContext 类的新实例。

ActionExecutedContext()

初始化 ActionExecutedContext 类的新实例。

public ActionExecutedContext ();
Public Sub New ()

适用于

ActionExecutedContext(ControllerContext, ActionDescriptor, Boolean, Exception)

初始化 ActionExecutedContext 类的新实例。

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)

参数

controllerContext
ControllerContext

控制器上下文。

actionDescriptor
ActionDescriptor

操作方法描述符。

canceled
Boolean

如果取消操作,则为 true。

exception
Exception

异常对象。

例外

actionDescriptor 参数为 null。

适用于