In this
article, we will come to know how to list all the users from
the SharePoint site using c#.
Scenario:
We have to
retrieve all the Users from the
SharePoint site with the Group Name using object
model.
Solution:
I have created
a console application which will group the users with the Group Name and also
display the User details.
Code (.cs):
Code (.cs):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
| using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint;
namespace UserPermissions_Console
{
class Program
{
static void Main(string[] args)
{
try
{
GetUsersGroups();
}
catch (Exception ex)
{
Console.WriteLine("Error Occured: " + ex.Message);
}
}
private static void GetUserRoles()
{
using (SPSite site = new SPSite("http://sitename"))
{
SPWeb web = site.OpenWeb();
Console.WriteLine("\n\n Roles Assignments:");
foreach (SPRoleAssignment roleA in web.RoleAssignments)
{
Console.WriteLine("The following Role definition bindings exist for" + roleA.Member.Name);
foreach (SPRoleDefinition roledef in roleA.RoleDefinitionBindings)
{
Console.WriteLine(roledef.Name);
}
}
Console.ReadLine();
}
}
private static void GetUsersGroups()
{
using (SPSite site = new SPSite("http://sitename"))
{
SPWeb web = site.OpenWeb();
SPGroupCollection groupCollection = web.SiteGroups;
foreach (SPGroup group in groupCollection)
{
SPUserCollection userCollection = group.Users;
Console.WriteLine("Group Name :" + group.Name+"\n");
foreach (SPUser user in userCollection)
{
Console.WriteLine("User Name: " + user.Name + " Email: " + user.Email + " Login: " + user.LoginName);
}
}
//Iterate the owners group
SPGroup ownerGroup = web.AssociatedOwnerGroup;
foreach (SPUser ownerUser in ownerGroup.Users)
{
Console.WriteLine("User Name: " + ownerUser.Name + " Email: " + ownerUser.Email + " Login: " + ownerUser.LoginName);
}
}
Console.ReadLine();
}
}
}
|
You can download the full solution using this link.
See Also
See Also
Check if current user is member of a SharePoint group using JQuery
Hope this helps you! Please free to comment and share this post.
Thanks for the Article explaining step by step.
ReplyDeleteYou are welcome!
DeleteHi there,
ReplyDeleteWhere have you used the GetUserRoles() method in this code?
Its right at the top dude
ReplyDeleteI agree with the other anonymous, GetUserRoles() method is created but not called. GetUsersGroups() is created and used in main but not GetUserRoles().
ReplyDeleteIt is probably because of JS used for enabling code view in the blog. Have a look now.
Delete