Enforce Action Filter on all Controller Actions (C# / ASP.NET MVC)
Hello, I made a new action filter (attribute, similar to [Authorize]) which authorizes access to a controller action based on a session value. However, I'm basically decorating all my controller actions with that attribute (with the exception of very few). So, I thought it would be better to have that Action Filter always executed exc...