GetUserNameByEmail Method

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Gets the user name associated with the specified e-mail address.

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

Syntax

C#
public override string GetUserNameByEmail(
	string email
)
Visual Basic
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