MySqlSimpleMembershipProvider.FindUsersByName Method

MySQL Connector/Net

MySqlSimpleMembershipProviderFindUsersByName Method

Namespace: MySql.Web.Security
Assembly: MySql.Web (in MySql.Web.dll) Version: 6.9.9
Syntax
public override MembershipUserCollection FindUsersByName(
	string usernameToMatch,
	int pageIndex,
	int pageSize,
	out int totalRecords
)
Public Overrides Function FindUsersByName ( 
	usernameToMatch As String,
	pageIndex As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef totalRecords As Integer
) As MembershipUserCollection
public:
virtual MembershipUserCollection^ FindUsersByName(
	String^ usernameToMatch, 
	int pageIndex, 
	int pageSize, 
	[OutAttribute] int% totalRecords
) override
abstract FindUsersByName : 
        usernameToMatch : string * 
        pageIndex : int * 
        pageSize : int * 
        totalRecords : int byref -> MembershipUserCollection 
override FindUsersByName : 
        usernameToMatch : string * 
        pageIndex : int * 
        pageSize : int * 
        totalRecords : int byref -> MembershipUserCollection 

Parameters

usernameToMatch
Type: SystemString
pageIndex
Type: SystemInt32
pageSize
Type: SystemInt32
totalRecords
Type: SystemInt32

Return Value

Type: MembershipUserCollection
See Also