Click or drag to resize
GnomonMembershipProviderFindUsersByEmail Method
Gets a collection of membership users where the e-mail address contains the specified e-mail address to match.

Namespace: RMP.Web
Assembly: RMP.Web (in RMP.Web.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public override MembershipUserCollection FindUsersByEmail(
	string emailToMatch,
	int pageIndex,
	int pageSize,
	ref int totalRecords
)

Parameters

emailToMatch
Type: SystemString
The e-mail address to search for.
pageIndex
Type: SystemInt32
The index of the page of results to return. pageIndex is zero-based.
pageSize
Type: SystemInt32
The size of the page of results to return.
totalRecords
Type: SystemInt32
The total number of matched users.

Return Value

Type: MembershipUserCollection
A MembershipUserCollection collection that contains a page of pageSizeMembershipUser objects beginning at the page specified by pageIndex.
Exceptions
ExceptionCondition
NotImplementedException
See Also