I have 2 attributes that I use within the controllers of my MVC application. AttributeA extends System.Web.Mvc.AuthorizeAttribute and AttributeB extends System.Web.Mvc.ActionFilterAttribute. I want AttributeB to always be run first.
I have tried all possible combinations of Order based on this article, but AttributeA is always run before AttributeB. Can anyone help?