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

 

Asynchronously notifies a user.

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

Syntax

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

Parameters

  • user
    Type: TUser

    The user of the token.

Return Value

Type: System.Threading.Tasks.Task

The task that completes the asynchronous operation.

Implements

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

See Also

DataProtectorTokenProvider<TUser, TKey> Class
Microsoft.AspNet.Identity.Owin Namespace
ASP.NET Identity

Return to top