如何查找所有控制器和操作

时间:2017-06-09 10:25:29

标签: c# asp.net-core asp.net-core-mvc

如何在dotnet核心中查找其属性的所有控制器和操作? 在.NET Framework中,我使用了以下代码:

public static List<string> GetControllerNames()
{
    List<string> controllerNames = new List<string>();
    GetSubClasses<Controller>().ForEach(type => controllerNames.Add(type.Name.Replace("Controller", "")));
    return controllerNames;
}
public static List<string> ActionNames(string controllerName)
{
    var types =
        from a in AppDomain.CurrentDomain.GetAssemblies()
        from t in a.GetTypes()
        where typeof(IController).IsAssignableFrom(t) &&
            string.Equals(controllerName + "Controller", t.Name, StringComparison.OrdinalIgnoreCase)
    select t;

    var controllerType = types.FirstOrDefault();

    if (controllerType == null)
    {
        return Enumerable.Empty<string>().ToList();
    }
    return new ReflectedControllerDescriptor(controllerType)
       .GetCanonicalActions().Select(x => x.ActionName).ToList();
}

但它不适用于dotnet核心。

1 个答案:

答案 0 :(得分:8)

如何将IActionDescriptorCollectionProvider注入需要了解这些内容的组件?它位于Microsoft.AspNetCore.Mvc.Infrastructure命名空间中。

此组件为您提供应用中可用的每个操作。以下是它提供的数据示例:

Action descriptor collection provider data sample

作为奖励,您还可以评估所有过滤器,参数等。

作为旁注,我想你可以使用反射来查找从ControllerBase继承的类型。但是你知道你可以拥有不从它继承的控制器吗?您可以编写覆盖这些规则的约定吗?因此,注入上述组件使其更容易。你不必担心它会破裂。