Fetches all members of a particular group.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual EntityCollection<SnGroupMemberEntity> GetGroupMemberCollection(
	Guid groupId,
	string stringToMatch,
	bool onlyGroupAdmins,
	int pageIndex,
	int pageSize,
	out int recordCount
)
Visual Basic
Public Overridable Function GetGroupMemberCollection ( 
	groupId As Guid,
	stringToMatch As String,
	onlyGroupAdmins As Boolean,
	pageIndex As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of SnGroupMemberEntity)
Visual C++
public:
virtual EntityCollection<SnGroupMemberEntity^>^ GetGroupMemberCollection(
	Guid groupId, 
	String^ stringToMatch, 
	bool onlyGroupAdmins, 
	int pageIndex, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetGroupMemberCollection : 
        groupId : Guid * 
        stringToMatch : string * 
        onlyGroupAdmins : bool * 
        pageIndex : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<SnGroupMemberEntity> 
override GetGroupMemberCollection : 
        groupId : Guid * 
        stringToMatch : string * 
        onlyGroupAdmins : bool * 
        pageIndex : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<SnGroupMemberEntity> 

Parameters

groupId
Type: System..::..Guid
Group id for which to fetch users.
stringToMatch
Type: System..::..String
String to match in the user name, used in the search scenarios.
onlyGroupAdmins
Type: System..::..Boolean
Include only administrators
pageIndex
Type: System..::..Int32
Page index.
pageSize
Type: System..::..Int32
Page size.
recordCount
Type: System..::..Int32%
Total record count.

Return Value

Type: EntityCollection<(Of <(<'SnGroupMemberEntity>)>)>
Collection of all members from the group with the specified group id.

Implements

IGroupBLL..::..GetGroupMemberCollection(Guid, String, Boolean, Int32, Int32, Int32%)

See Also