gpt4 book ai didi

c# - 检查 Web API 中的 AllowAnonymousAttribute

转载 作者:太空狗 更新时间:2023-10-30 00:19:07 26 4
gpt4 key购买 nike

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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com