IUserTokenProvider<TUser, TKey>.NotifyAsync Method (String, UserManager<TUser, TKey>, TUser)

 

Asynchronously notifies the user that a token has been generated.

Namespace:   Microsoft.AspNet.Identity
Assembly:  Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)

Syntax

Task NotifyAsync(
    string token,
    UserManager<TUser, TKey> manager,
    TUser user
)
Task^ NotifyAsync(
    String^ token,
    UserManager<TUser, TKey>^ manager,
    TUser user
)
abstract NotifyAsync : 
        token:string *
        manager:UserManager<'TUser, 'TKey> *
        user:'TUser -> Task
Function NotifyAsync (
    token As String,
    manager As UserManager(Of TUser, TKey),
    user As TUser
) As Task

Parameters

  • user
    Type: TUser

    The user.

Return Value

Type: System.Threading.Tasks.Task

The task object representing the asynchronous operation.

See Also

IUserTokenProvider<TUser, TKey> Interface
Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top