Gets users that are followers of the user with user id.

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

Syntax

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

Parameters

userId
Type: System..::..Guid
User 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 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 <(<'AspnetUsersEntity>)>)>
Collection of users that are in the friend's list for a given user id

See Also