summaryrefslogtreecommitdiff
path: root/external/aspnetwebstack/src/System.Web.Http/Controllers/IActionMethodSelector.cs
blob: d9b3cb8455893d4993af53e6c2cfb9d838242a2b (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.

using System.Reflection;

namespace System.Web.Http.Controllers
{
    internal interface IActionMethodSelector
    {
        bool IsValidForRequest(HttpControllerContext controllerContext, MethodInfo methodInfo);
    }
}