SingleSignOnMembershipProvider.FindUsersByEmail Method (String, Int32, Int32, Int32)
This method supports the AD FS infrastructure and is not intended to be used directly from your code. This method determines if a user with the specified e-mail address may exist.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public override MembershipUserCollection FindUsersByEmail(
string emailToMatch,
int pageIndex,
int pageSize,
out int totalRecords
)
public:
virtual MembershipUserCollection^ FindUsersByEmail(
String^ emailToMatch,
int pageIndex,
int pageSize,
[OutAttribute] int% totalRecords
) override
override FindUsersByEmail :
emailToMatch:string *
pageIndex:int *
pageSize:int *
totalRecords:int byref -> MembershipUserCollection
Public Overrides Function FindUsersByEmail (
emailToMatch As String,
pageIndex As Integer,
pageSize As Integer,
<OutAttribute> ByRef totalRecords As Integer
) As MembershipUserCollection
Parameters
emailToMatch
Type: System.StringThe e-mail address to search for.
pageIndex
Type: System.Int32The index of the page of results to return.
pageSize
Type: System.Int32The size of the page of results to return.
totalRecords
Type: System.Int32The total number of matched users.
Return Value
Type: System.Web.Security.MembershipUserCollection
A collection of users that match the specified e-mail addresses.
See Also
SingleSignOnMembershipProvider Class
System.Web.Security.SingleSignOn Namespace
Return to top