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 password reset token for the user.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
public static string GeneratePasswordResetToken<TUser, TKey>(
this UserManager<TUser, TKey> manager,
TKey userId
)
where TUser : class, IUser<TKey>
where TKey : object, IEquatable<TKey>
public:
generic<typename TUser, typename TKey>
where TUser : ref class, IUser<TKey>
where TKey : Object, IEquatable<TKey>
[ExtensionAttribute]
static String^ GeneratePasswordResetToken(
UserManager<TUser, TKey>^ manager,
TKey userId
)
static member GeneratePasswordResetToken<'TUser, 'TKey when 'TUser : not struct and IUser<'TKey> when 'TKey : Object and IEquatable<'TKey>> :
manager:UserManager<'TUser, 'TKey> *
userId:'TKey -> string
<ExtensionAttribute>
Public Shared Function GeneratePasswordResetToken(Of TUser As { Class, IUser(Of TKey) }, TKey As { Object, IEquatable(Of TKey) }) (
manager As UserManager(Of TUser, TKey),
userId As TKey
) As String
Parameters
manager
Type: Microsoft.AspNet.Identity.UserManager<TUser, TKey>The user manager.
userId
Type: TKeyThe user ID.
Return Value
Type: System.String
The password reset token.
Type Parameters
- TUser
The type of the user.
- TKey
The type of the key.
See Also
UserManagerExtensions Class
Microsoft.AspNet.Identity Namespace
ASP.NET Identity
Return to top