Files
linux-packaging-mono/mcs/class/System.Web.Mvc3/Mvc/IActionInvoker.cs

7 lines
160 B
C#
Raw Normal View History

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