Hi I'm trying to list in a table the userinfo / permissions of users allowed access to a specific document library.
Now I already know how to get the site info of all users.
kind of like this:
SPSite mySite = new SPSite
SPWeb myWeb = mySite.OpenWeb
SPUserCollection users = myWeb.AllUsers;
Foreach(SpUser in users)
User.Name etc....
This code is pretty straightforward but could not find anything specific in the SDK to help get the specific permissions for the Doc Library or a List.
Any help would be appreciated....
Now I already know how to get the site info of all users.
kind of like this:
SPSite mySite = new SPSite
SPWeb myWeb = mySite.OpenWeb
SPUserCollection users = myWeb.AllUsers;
Foreach(SpUser in users)
User.Name etc....
This code is pretty straightforward but could not find anything specific in the SDK to help get the specific permissions for the Doc Library or a List.
Any help would be appreciated....