Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IFilterProvider.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edae298e57da9eaff2d7b37afc9ea7ee27a0a396 (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

namespace System.Web.Mvc
{
    public interface IFilterProvider
    {
        IEnumerable<Filter> GetFilters(ControllerContext controllerContext, ActionDescriptor actionDescriptor);
    }
}