Gets users that are in the followers list for the currently active user.

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

Syntax

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

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 <(<'AspnetUsersEntity>)>)>
Collection of users that are in the friend's list for a currently active user

Implements

IFriendRepository..::..GetFollowers(Int32, String, Boolean, Int32, Int32%)

See Also