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

IAuthorizationFilter.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0f01b261e6ef2405f7eb7e2803453e694b77a54 (plain)
1
2
3
4
5
6
7
namespace System.Web.Mvc
{
    public interface IAuthorizationFilter
    {
        void OnAuthorization(AuthorizationContext filterContext);
    }
}