Gets a list of invitations sent by admins of the particular group.

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

Syntax

C#
EntityCollection<SnGroupRequestEntity> GetInvitationsSent(
	Guid groupId,
	string stringToMatch,
	bool getAvatar,
	int pageIndex,
	int pageSize,
	out int recordCount
)
Visual Basic
Function GetInvitationsSent ( 
	groupId As Guid,
	stringToMatch As String,
	getAvatar As Boolean,
	pageIndex As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of SnGroupRequestEntity)
Visual C++
EntityCollection<SnGroupRequestEntity^>^ GetInvitationsSent(
	Guid groupId, 
	String^ stringToMatch, 
	bool getAvatar, 
	int pageIndex, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetInvitationsSent : 
        groupId : Guid * 
        stringToMatch : string * 
        getAvatar : bool * 
        pageIndex : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<SnGroupRequestEntity> 

Parameters

groupId
Type: System..::..Guid
Group id for which a list of friends is to be retrieved
stringToMatch
Type: System..::..String
String to match in the user name
getAvatar
Type: System..::..Boolean
Indicates if membership the user avatar is to be fetched or not
pageIndex
Type: System..::..Int32
Page index for paging
pageSize
Type: System..::..Int32
Page size
recordCount
Type: System..::..Int32%
Count of the records retrieved

Return Value

Type: EntityCollection<(Of <(<'SnGroupRequestEntity>)>)>
Collection of users that are in the group invitations list for a group with id passed as a parameter groupId.

See Also