Gets users that are in the blocked users (connections) list for the user with userId.

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

Syntax

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

Parameters

userId
Type: System..::..Guid
User id for which a list of blocked users is to be retrieved
stringToMatch
Type: System..::..String
String to match in the user name
getAvatar
Type: System..::..Boolean
Indicates if 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 <(<'SnBlockUserEntity>)>)>
Collection of users that are in the blocked users list for a given user id

Implements

IFriendBLL..::..GetBlockedUsers(Guid, String, Boolean, Int32, Int32, Int32%)

See Also