指定需要授权

发布于 2024-10-25 02:02:56 字数 247 浏览 2 评论 0原文

我对 MVC (但不是 ASP.NET)有点陌生。 MVC 中是否有与 ASP.NET 中类似的概念来指定 URL 授权?

这个问题确实与 Facebook C# SDK 有关 - 他们引入了 [CanvasAuthorize] 属性,该属性适用于 MVC 应用程序中的控制器。如何将 [CanvasAuthorize] 应用于一组控制器而不将此属性附加到每个控制器?

谢谢,

I'm somewhat new to MVC (but not ASP.NET). Is there a similar concept in MVC as there is in ASP.NET to specify URL authorization?

The question is really related to Facebook C# SDK - they have introduced the [CanvasAuthorize] attribute, which applies to a controller in the MVC app. How can I apply [CanvasAuthorize] to a set of controllers without attaching this attribute to each one?

Thanks,

Dan

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

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

发布评论

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

评论(1

转角预定愛 2024-11-01 02:02:56

您可以让所有这些控制器都派生自基本控制器,然后使用属性来装饰该基本控制器,这将使其适用于所有控制器和操作。在 ASP.NET MVC 3 中,您还可以使用 全局操作过滤器自定义过滤器提供程序

You could have all those controllers derive from a base controller and then decorate this base controller with the attribute which will make it apply to all controllers and actions. In ASP.NET MVC 3 you also have the possibility to use global action filters and custom filter providers.

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