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 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
token
Type: System.StringThe token.
manager
Type: Microsoft.AspNet.Identity.UserManager<TUser, TKey>The manager.
user
Type: TUserThe 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