Which package should I use to create custom action filters in asp.net 5? In previous mvc, I can create one by inheriting from ActionFilterAttribute. Now this class seems to have moved.
Please help. Thanks
ActionFilterAttribute is in the Microsoft.AspNetCore.Mvc.Filters namespace.
All the source code for MVC can be found on GitHub so you should check there if you can't find classes where you normally find them.
Microsoft.AspNet.Mvc.Filters now.