GetUserNameByEmail Method

MySQL Connector/Net

Gets the user name associated with the specified e-mail address.

Namespace:  MySql.Web.Security
Assembly:  MySql.Web (in MySql.Web.dll) Version: 6.2.2.0

Syntax

C#
public override string GetUserNameByEmail(
	string email
)
Visual Basic (Declaration)
Public Overrides Function GetUserNameByEmail ( _
	email As String _
) As String
Visual C++
public:
virtual String^ GetUserNameByEmail(
	String^ email
) override

Parameters

email
Type: System..::.String
The e-mail address to search for.

Return Value

The user name associated with the specified e-mail address. If no match is found, return null.

See Also