Search all users.

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

Syntax

C#
public virtual List<UserSearchItem> SearchAllUsers(
	string stringToMatch,
	int maxNoOfRecordsToFetch
)
Visual Basic
Public Overridable Function SearchAllUsers ( 
	stringToMatch As String,
	maxNoOfRecordsToFetch As Integer
) As List(Of UserSearchItem)
Visual C++
public:
virtual List<UserSearchItem^>^ SearchAllUsers(
	String^ stringToMatch, 
	int maxNoOfRecordsToFetch
)
F#
abstract SearchAllUsers : 
        stringToMatch : string * 
        maxNoOfRecordsToFetch : int -> List<UserSearchItem> 
override SearchAllUsers : 
        stringToMatch : string * 
        maxNoOfRecordsToFetch : int -> List<UserSearchItem> 

Parameters

stringToMatch
Type: System..::..String
String to match.
maxNoOfRecordsToFetch
Type: System..::..Int32
Maximum number of records to fetch.

Return Value

Type: List<(Of <(<'UserSearchItem>)>)>
List of users.

Implements

IUserRepository..::..SearchAllUsers(String, Int32)

See Also