1 namespace System.Web.Mvc {
2     using System.Collections.Generic;
3 
4     public interface IFilterProvider {
GetFilters(ControllerContext controllerContext, ActionDescriptor actionDescriptor)5         IEnumerable<Filter> GetFilters(ControllerContext controllerContext, ActionDescriptor actionDescriptor);
6     }
7 }
8