asp.net-mvc – ASP.NET MVC检查Controller或Action中的自定义属性

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – ASP.NET MVC检查Controller或Action中的自定义属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
请考虑以下代码
public class MyAttribute : Attribute {  }

[MyAttribute]
public class MyControlller : Controller
{
      //...
}

现在我有一个全局动作过滤器,它获取一个ActionExecutingContext对象.

我的问题是,在这里,我如何检查所请求的Controller是否已使用我的自定义属性进行装饰.

解决方法

尝试
actionExecutingContextInstance.Controller.GetType().GetCustomAttributes(typeof(MyAttribute),false).Length > 0)

要么

actionExecutingContextInstance.ActionDescriptor.GetCustomAttributes(typeof(MyAttribute),false).Length > 0)
原文链接:https://www.f2er.com/aspnet/245369.html

猜你在找的asp.Net相关文章