Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Asynchronously returns the user associated with this e-mail.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
Function FindByEmailAsync ( _
email As String _
) As Task(Of TUser)
'Usage
Dim instance As IUserEmailStore
Dim email As String
Dim returnValue As Task(Of TUser)
returnValue = instance.FindByEmailAsync(email)
Task<TUser> FindByEmailAsync(
string email
)
Task<TUser>^ FindByEmailAsync(
String^ email
)
abstract FindByEmailAsync :
email:string -> Task<'TUser>
function FindByEmailAsync(
email : String
) : Task<TUser>
- email
Type: System.String
The user e-mail.
Type: System.Threading.Tasks.Task<TUser>
The task object representing the asynchronous operation.
IUserEmailStore<TUser, TKey> Interface