Gets users that are in the blocked users (connections) list for the currently active user.

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

Syntax

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

Parameters

pageIndex
Type: System..::..Int32
Page index for paging
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
pageSize
Type: System..::..Int32
Page size
recordCount
Type: System..::..Int32%
Count of the records retrieved

Return Value

Type: EntityCollection<(Of <(<'SnBlockUserEntity>)>)>
Collection of users that are in the blocked users list for a currently active user

See Also