aspnetcore/src/Microsoft.AspNet.Mvc/ControllerCache.cs

9 lines
222 B
C#

using System.Collections.Generic;
namespace Microsoft.AspNet.Mvc
{
public abstract class ControllerCache
{
public abstract IEnumerable<ControllerDescriptor> GetController(string controllerName);
}
}