如何检查网站集用户的权限?

发布于 2024-10-07 20:48:39 字数 320 浏览 2 评论 0原文

我想检查用户是否是特定网站集的网站集管理员。当我浏览成员函数时,我看到两个函数

site.CheckForPermissions(SPReusableAcl acl, SPBasePermissions perms)
site.DoesUserHavePermissions(SPReusableAcl acl, SPBasePermissions perms)

但是如何使用它们?什么是 SPReusableAcl?如何关联 SPUserSPReusableAcl

有什么想法吗?

I want to check if a user is a site collection administrator of a particular site collection. When I go through the member functions I see two functions

site.CheckForPermissions(SPReusableAcl acl, SPBasePermissions perms)
site.DoesUserHavePermissions(SPReusableAcl acl, SPBasePermissions perms)

But how to use them? What is SPReusableAcl? How can I relate SPUser and SPReusableAcl?

Any ideas?

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

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

发布评论

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

评论(1

国粹 2024-10-14 20:48:40

您了解 .isSiteAdmin 属性吗?您可以使用以下命令检查当前用户是否为管理员。

SPContext.Current.Site.RootWeb.CurrentUser.IsSiteAdmin

另请查看 SPWeb.SiteAdministrators 集合。

实际上, 上有一些不错的建议如何在此处检查用户是否是网站集管理员

Do you know about the .isSiteAdmin Property? You can check if the current user is admin by using

SPContext.Current.Site.RootWeb.CurrentUser.IsSiteAdmin

Also check out the SPWeb.SiteAdministrators collection.

Actually there are some nice suggestions on how to check if a user is site collection administrator here.

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