作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
System.Web.Mvc.ActionDescriptor 具有方法 IsDefined,它有助于确定是否为该成员定义了指定属性类型的一个或多个实例。
System.Web.Http.Controllers.HttpActionDescriptor 没有这个方法。
如何使用 HttpActionDescriptor 检查 AllowAnonymousAttribute?
最佳答案
我发现了。我可以使用 GetCustomAttributes 方法。例如(来自 AuthorizeAttribute 实现):
private static bool SkipAuthorization(HttpActionContext actionContext)
{
if (!Enumerable.Any<AllowAnonymousAttribute>((IEnumerable<AllowAnonymousAttribute>) actionContext.ActionDescriptor.GetCustomAttributes<AllowAnonymousAttribute>()))
return Enumerable.Any<AllowAnonymousAttribute>((IEnumerable<AllowAnonymousAttribute>) actionContext.ControllerContext.ControllerDescriptor.GetCustomAttributes<AllowAnonymousAttribute>());
else
return true;
}
关于c# - 检查 Web API 中的 AllowAnonymousAttribute,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24778953/
System.Web.Mvc.ActionDescriptor 具有方法 IsDefined,它有助于确定是否为该成员定义了指定属性类型的一个或多个实例。 System.Web.Http.Contro
我是一名优秀的程序员,十分优秀!