OnActionExecuting
triggers when an action is about to execute.
If my action has actionfilter
[myCustomActionFilter]
public ActionResult MyAction()
{
//implementation
}
Is it possible to determine (inside the OnActionExecuting
event) that an action has myCustomActionFilter
applied into it?