在ASP.NET 4.x中,有一个ReflectedControllerDescriptor
类,它位于System.Web.Mvc
中。该类提供控制器的描述符。
在我之前的申请中,我曾经这样做过:
var controllerDescriptor = new ReflectedControllerDescriptor(controllerType);
var actions = (from a in controllerDescriptor.GetCanonicalActions()
let authorize = (AuthorizeAttribute)a.GetCustomAttributes(typeof(AuthorizeAttribute), false).SingleOrDefault()
select new ControllerNavigationItem
{
Action = a.ActionName,
Controller = a.ControllerDescriptor.ControllerName,
Text =a.ActionName.SeperateWords(),
Area = GetArea(typeNamespace),
Roles = authorize?.Roles.Split(',')
}).ToList();
return actions;
问题是我在ASP.NET Core中找不到这个类的任何等价物。我遇到IActionDescriptorCollectionProvider
似乎提供了有限的细节。
问题
我的目标是在ASP.NET Core中编写一个等效的代码。我如何实现这一目标?
非常感谢您的帮助
答案 0 :(得分:4)
我遇到了IActionDescriptorCollectionProvider 提供有限的细节。
您可能不会ActionDescriptor
投放ControllerActionDescriptor
。相关信息为here
我的目标是在ASP.NET Core中编写一个等效的代码。我如何能 实现那个?
以下是我在ConfigureServices
方法中的尝试:
var provider = services.BuildServiceProvider().GetRequiredService<IActionDescriptorCollectionProvider>();
var ctrlActions = provider.ActionDescriptors.Items
.Where(x => (x as ControllerActionDescriptor)
.ControllerTypeInfo.AsType() == typeof(Home222Controller))
.ToList();
foreach (var action in ctrlActions)
{
var descriptor = action as ControllerActionDescriptor;
var controllerName = descriptor.ControllerName;
var actionName = descriptor.ActionName;
var areaName = descriptor.ControllerTypeInfo
.GetCustomAttribute<AreaAttribute>().RouteValue;
}