Skip to main content
C#
1
2
3
public Group Get(Guid id) { }

Remarks

C#
1
2
3
4
5
6
7
8
9
10
using Zengenti.Contensis.Management; // Create a client var client = ManagementClient.Create(); // Mimic a guid value var groupId = Guid.Parse("c5da1719-cb3f-4f2e-927b-f678293258f3"); // Get the group Group group = client.Security.Groups.Get(groupId);
C#
1
2
3
public async Task<Group> GetAsync(Guid id) { }

Remarks

C#
1
2
3
4
5
6
7
8
9
10
using Zengenti.Contensis.Management; // Create a client var client = ManagementClient.Create(); // Mimic a guid value var groupId = Guid.Parse("c5da1719-cb3f-4f2e-927b-f678293258f3"); // Get the group Group group = await client.Security.Groups.GetAsync(groupId);
C#
1
2
3
public Group Get(string id) { }

Remarks

C#
1
2
3
4
5
6
7
using Zengenti.Contensis.Management; // Create a client var client = ManagementClient.Create(); // Get the group Group group = client.Security.Groups.Get("c5da1719-cb3f-4f2e-927b-f678293258f3");
C#
1
2
3
public async Task<Group> GetAsync(string id) { }

Remarks

C#
1
2
3
4
5
6
7
using Zengenti.Contensis.Management; // Create a client var client = ManagementClient.Create(); // Get the group Group group = await client.Security.Groups.GetAsync("c5da1719-cb3f-4f2e-927b-f678293258f3");
C#
1
2
3
public Group Get(string id) { }

Remarks

C#
1
2
3
4
5
6
7
using Zengenti.Contensis.Management; // Create a client var client = ManagementClient.Create(); // Get the group Group group = client.Security.Groups.Get("Fight Club Members");
C#
1
2
3
public async Task<Group> GetAsync(string id) { }

Remarks

C#
1
2
3
4
5
6
7
using Zengenti.Contensis.Management; // Create a client var client = ManagementClient.Create(); // Get the group Group group = await client.Security.Groups.GetAsync("Fight Club Members");

Still need help?

New support request