SingleSignOnMembershipProvider.GetUserNameByEmail Method (String)

 

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. If the user may exist, the e-mail address is returned.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Syntax

public override string GetUserNameByEmail(
    string email
)
public:
virtual String^ GetUserNameByEmail(
    String^ email
) override
override GetUserNameByEmail : 
        email:string -> string
Public Overrides Function GetUserNameByEmail (
    email As String
) As String

Parameters

  • email
    Type: System.String

    A String that contains the e-mail address of the user.

Return Value

Type: System.String

A String that contains the e-mail address of the user.

See Also

SingleSignOnMembershipProvider Class
System.Web.Security.SingleSignOn Namespace

Return to top