Is there any way to centralize enforcement that every action method must have a \"ValidateAntiForgeryToken\" attribute? I\'m thinking it would have to be done by extending
How about this?
[ValidateAntiForgeryToken] public class MyBaseController : Controller { }