UserManagerExtensions.VerifyTwoFactorToken<TUser, TKey> Method (UserManager<TUser, TKey>, TKey, String, String)
Determines whether a user factor token with the specified provider is valid.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
public static bool VerifyTwoFactorToken<TUser, TKey>(
this UserManager<TUser, TKey> manager,
TKey userId,
string providerId,
string token
)
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 bool VerifyTwoFactorToken(
UserManager<TUser, TKey>^ manager,
TKey userId,
String^ providerId,
String^ token
)
static member VerifyTwoFactorToken<'TUser, 'TKey when 'TUser : not struct and IUser<'TKey> when 'TKey : Object and IEquatable<'TKey>> :
manager:UserManager<'TUser, 'TKey> *
userId:'TKey *
providerId:string *
token:string -> bool
<ExtensionAttribute>
Public Shared Function VerifyTwoFactorToken(Of TUser As { Class, IUser(Of TKey) }, TKey As { Object, IEquatable(Of TKey) }) (
manager As UserManager(Of TUser, TKey),
userId As TKey,
providerId As String,
token As String
) As Boolean
Parameters
manager
Type: Microsoft.AspNet.Identity.UserManager<TUser, TKey>The user manager.
userId
Type: TKeyThe user ID.
providerId
Type: System.StringThe user role.
token
Type: System.StringThe token.
Return Value
Type: System.Boolean
true if a user factor token is valid; otherwise, false.
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