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

IActionInvoker.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ebb89f789608223e1d425c7bd17a3c149845f2bf (plain)
1
2
3
4
5
6
7
8
9
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.

namespace System.Web.Mvc
{
    public interface IActionInvoker
    {
        bool InvokeAction(ControllerContext controllerContext, string actionName);
    }
}