Skip to main content
C#
1
2
3
public PagedList<Group> List(SecurityListOptions listOptions = null, string query = null) { }
C#
1
2
3
4
5
6
7
8
9
10
11
12
13
using Zengenti.Contensis.Management; using Zengenti.Data; // Create a client var client = ManagementClient.Create(); SecurityListOptions listOptions = new SecurityListOptions { PageOptions = new PageOptions(0, 10) }; // List the groups PagedList<Group> groups = client.Security.Groups.List(listOptions);
C#
1
2
3
public async Task<PagedList<Group>> ListAsync(SecurityListOptions listOptions = null, string query = null) { }
C#
1
2
3
4
5
6
7
8
9
10
11
12
13
using Zengenti.Contensis.Management; using Zengenti.Data; // Create a client var client = ManagementClient.Create(); SecurityListOptions listOptions = new SecurityListOptions { PageOptions = new PageOptions(0, 10) }; // List the groups PagedList<Group> groups = await client.Security.Groups.ListAsync(listOptions);
C#
1
2
3
public PagedList<Group> List(SecurityListOptions listOptions = null, string query = null) { }
C#
1
2
3
4
5
6
7
8
9
10
11
12
13
using Zengenti.Contensis.Management; using Zengenti.Data; // Create a client var client = ManagementClient.Create(); SecurityListOptions listOptions = new SecurityListOptions { PageOptions = new PageOptions(0, 10) }; // List the groups with a query value of "fight club" PagedList<Group> groups = client.Security.Groups.List(listOptions, "fight club");
C#
1
2
3
public async Task<PagedList<Group>> ListAsync(SecurityListOptions listOptions = null, string query = null) { }
C#
1
2
3
4
5
6
7
8
9
10
11
12
13
using Zengenti.Contensis.Management; using Zengenti.Data; // Create a client var client = ManagementClient.Create(); SecurityListOptions listOptions = new SecurityListOptions { PageOptions = new PageOptions(0, 10) }; // List the groups with a query value of "fight club" PagedList<Group> groups = await client.Security.Groups.ListAsync(listOptions, "fight club");

Still need help?

New support request