aspnetcore/Microsoft.AspNet.Mvc/IControllerFactory.cs

12 lines
243 B
C#

using Microsoft.Owin;
namespace Microsoft.AspNet.Mvc
{
public interface IControllerFactory
{
object CreateController(IOwinContext context, string controllerName);
void ReleaseController(object controller);
}
}