ActionExecutingContext Class

Syntax

public class ActionExecutingContext : FilterContext

GitHub

View on GitHub

class Microsoft.AspNet.Mvc.ActionExecutingContext

Constructors

ActionExecutingContext(Microsoft.AspNet.Mvc.ActionContext, System.Collections.Generic.IList<Microsoft.AspNet.Mvc.IFilter>, System.Collections.Generic.IDictionary<System.String, System.Object>, System.Object)
Arguments:
  • actionContext (Microsoft.AspNet.Mvc.ActionContext) –
  • filters (System.Collections.Generic.IList{Microsoft.AspNet.Mvc.IFilter}) –
  • actionArguments (System.Collections.Generic.IDictionary{System.String,System.Object}) –
  • controller (System.Object) –
public ActionExecutingContext(ActionContext actionContext, IList<IFilter> filters, IDictionary<string, object> actionArguments, object controller)

Properties

ActionArguments()
Return type:System.Collections.Generic.IDictionary{System.String,System.Object}
public virtual IDictionary<string, object> ActionArguments { get; }
Controller()
Return type:System.Object
public virtual object Controller { get; }
Result()
Return type:Microsoft.AspNet.Mvc.IActionResult
public virtual IActionResult Result { get; set; }