MembershipProvider.FindUsersByEmail Method
Assembly: System.Web (in system.web.dll)
public: virtual MembershipUserCollection^ FindUsersByEmail ( String^ emailToMatch, int pageIndex, int pageSize, [OutAttribute] int% totalRecords ) abstract
public abstract MembershipUserCollection FindUsersByEmail ( String emailToMatch, int pageIndex, int pageSize, /** @attribute OutAttribute() */ /** @ref */ int totalRecords )
Not applicable.
Parameters
- emailToMatch
The e-mail address to search for.
- pageIndex
The index of the page of results to return. pageIndex is zero-based.
- pageSize
The size of the page of results to return.
- totalRecords
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.FindUsersByEmail returns a list of membership users where the user's e-mail address matches the supplied emailToMatch for the configured ApplicationName property. If your data source supports additional search capabilities, such as wildcard characters, you can provide more extensive search capabilities for e-mail addresses.
The results returned by FindUsersByEmail are constrained by the pageIndex and pageSize parameters. The pageSize parameter identifies the number of MembershipUser objects to return in the MembershipUserCollection collection. The pageIndex parameter identifies which page of results to return where 0 identifies the first page. The totalRecords parameter is an out parameter that is set to the total number of membership users that matched the emailToMatch value. For example, if 13 users were found where emailToMatch matched part of or the entire e-mail address, and the pageIndex value was 1 with a pageSize of 5, then the MembershipUserCollection would contain the sixth through the tenth users returned. totalRecords would be set to 13.
For an example of a MembershipProvider implementation, see Implementing a Profile Provider.