Reputation: 32391
Does anyone know what the rules are for order of execution of OnActionExecuted
in
OnActionExecuted
method in the controller/base
controller, and OnActionExecuted
method in an Attribute/ActionFilter applied to
the Action?Is the order guaranteed?
Upvotes: 2
Views: 647
Reputation: 8488
Overridden controller methods are always higher in the filter stack and will therefore get called first and order is guaranteed.
Upvotes: 2