Retrieves a paginated list of users for a given group

Namespace: Cartella.Interfaces
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
IPaginatedList<IUser, int> GetUsersForGroup(
	string groupId,
	bool includeDeletedUsers
)
Visual Basic
Function GetUsersForGroup ( _
	groupId As String, _
	includeDeletedUsers As Boolean _
) As IPaginatedList(Of IUser, Integer)
Visual C++
IPaginatedList<IUser^, int>^ GetUsersForGroup(
	String^ groupId, 
	bool includeDeletedUsers
)

Parameters

groupId
Type: System..::..String
Group ID
includeDeletedUsers
Type: System..::..Boolean
Returned users should include deleted users

See Also