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 true if the user email is confirmed.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
Function GetEmailConfirmedAsync ( _
user As TUser _
) As Task(Of Boolean)
'Usage
Dim instance As IUserEmailStore
Dim user As TUser
Dim returnValue As Task(Of Boolean)
returnValue = instance.GetEmailConfirmedAsync(user)
Task<bool> GetEmailConfirmedAsync(
TUser user
)
Task<bool>^ GetEmailConfirmedAsync(
TUser user
)
abstract GetEmailConfirmedAsync :
user:'TUser -> Task<bool>
function GetEmailConfirmedAsync(
user : TUser
) : Task<boolean>
- user
Type: TUser
The user associated with the method.
Type: System.Threading.Tasks.Task<Boolean>
The task object representing the asynchronous operation.
IUserEmailStore<TUser, TKey> Interface