PRELIMINARY INFORMATION - SUBJECT TO CHANGE
This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Gets a collection of membership users where the e-mail address contains the specified e-mail address to match.

Namespace: Smartsite.DigiD
Assembly:  Smartsite.DigiD (in Smartsite.DigiD.dll)

Syntax

C#Copy imageCopy Code
public override  FindUsersByEmail(
	string emailToMatch,
	int pageIndex,
	int pageSize,
	out int totalRecords
)
Visual Basic (Declaration)Copy imageCopy Code
Public Overrides Function FindUsersByEmail ( _
	emailToMatch As , _
	pageIndex As Integer, _
	pageSize As Integer, _
	<> ByRef totalRecords As Integer _
) As 

Parameters

emailToMatch
String
The e-mail address to search for.
pageIndex
Int32
The index of the page of results to return. pageIndex is zero-based.
pageSize
Int32
The size of the page of results to return.
totalRecords
Int32%
The total number of matched users.

Return Value

A MembershipUserCollection collection that contains a page of pageSizeMembershipUser objects beginning at the page specified by pageIndex.

See Also

Advanced