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 sets whether the user e-mail is confirmed.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
Function SetEmailConfirmedAsync ( _
user As TUser, _
confirmed As Boolean _
) As Task
'Usage
Dim instance As IUserEmailStore
Dim user As TUser
Dim confirmed As Boolean
Dim returnValue As Task
returnValue = instance.SetEmailConfirmedAsync(user, _
confirmed)
Task SetEmailConfirmedAsync(
TUser user,
bool confirmed
)
Task^ SetEmailConfirmedAsync(
TUser user,
bool confirmed
)
abstract SetEmailConfirmedAsync :
user:'TUser *
confirmed:bool -> Task
function SetEmailConfirmedAsync(
user : TUser,
confirmed : boolean
) : Task
- user
Type: TUser
The user where the e-mail belongs.
- confirmed
Type: System.Boolean
true if the user e-mail is confirmed; otherwise, false.
Type: System.Threading.Tasks.Task
The task object representing the asynchronous operation.
IUserEmailStore<TUser, TKey> Interface