MVC3 integrated, with some changes to make it compile on Mono and with Razor2
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / IFilterProvider.cs
1 namespace System.Web.Mvc {
2     using System.Collections.Generic;
3
4     public interface IFilterProvider {
5         IEnumerable<Filter> GetFilters(ControllerContext controllerContext, ActionDescriptor actionDescriptor);
6     }
7 }