可以有多个 FilterAttributes 吗?

发布于 2024-10-09 15:00:41 字数 498 浏览 0 评论 0原文

是否可以堆叠多个过滤器属性?例如,我有这个属性,它检查一个人是否有权“管理员”或“队列”,

    [ClientPortalSecured("Administrator", "Queue")]
    public ActionResult Index()
    {
        return View(this.GetModel());
    }

但如果我想检查这些和其他东西怎么办?可以做这样的事情吗?

    [ClientPortalSecured("Administrator", "Queue")]
    [ClientPortalSecured("abc")]
    public ActionResult Index()
    {
        return View(this.GetModel());
    }

当我尝试此操作时,当前出现“重复的‘ClientPortalSecured’属性”编译器错误。

Is it possible to stack multiple filter attributes? For instance I have this attribute which checks if a person has permission to "Administrator" OR "Queue"

    [ClientPortalSecured("Administrator", "Queue")]
    public ActionResult Index()
    {
        return View(this.GetModel());
    }

but what if I wanted to check for these AND something else? Is it possible to do something like this?

    [ClientPortalSecured("Administrator", "Queue")]
    [ClientPortalSecured("abc")]
    public ActionResult Index()
    {
        return View(this.GetModel());
    }

I currently get "Duplicate 'ClientPortalSecured' attribute" compiler error when I try this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我只土不豪 2024-10-16 15:00:41

找到了。将

[AttributeUsageAttribute(AttributeTargets.All, AllowMultiple = true)]

添加到我的 ClientPortalSecuredAttribute 类

found it. Added

[AttributeUsageAttribute(AttributeTargets.All, AllowMultiple = true)]

to my ClientPortalSecuredAttribute class

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文