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.
Gets the e-mail confirmation token for the user.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
Public Overridable Function GenerateEmailConfirmationTokenAsync ( _
userId As TKey _
) As Task(Of String)
'Usage
Dim instance As UserManager
Dim userId As TKey
Dim returnValue As Task(Of String)
returnValue = instance.GenerateEmailConfirmationTokenAsync(userId)
public virtual Task<string> GenerateEmailConfirmationTokenAsync(
TKey userId
)
public:
virtual Task<String^>^ GenerateEmailConfirmationTokenAsync(
TKey userId
)
abstract GenerateEmailConfirmationTokenAsync :
userId:'TKey -> Task<string>
override GenerateEmailConfirmationTokenAsync :
userId:'TKey -> Task<string>
public function GenerateEmailConfirmationTokenAsync(
userId : TKey
) : Task<String>
- userId
Type: TKey
The user ID.
Type: System.Threading.Tasks.Task<String>
The task representing the asynchronous operation.
UserManager<TUser, TKey> Class