简体   繁体   中英

How to check the permissions of a user with a site collection?

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?

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 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM