UserManagerExtensions.NotifyTwoFactorToken<TUser, TKey> Method (UserManager<TUser, TKey>, TKey, String, String)

 

Notifies a user with a token from a specific user factor provider.

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

Syntax

public static IdentityResult NotifyTwoFactorToken<TUser, TKey>(
    this UserManager<TUser, TKey> manager,
    TKey userId,
    string twoFactorProvider,
    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 IdentityResult^ NotifyTwoFactorToken(
    UserManager<TUser, TKey>^ manager,
    TKey userId,
    String^ twoFactorProvider,
    String^ token
)
static member NotifyTwoFactorToken<'TUser, 'TKey when 'TUser : not struct and IUser<'TKey> when 'TKey : Object and IEquatable<'TKey>> : 
        manager:UserManager<'TUser, 'TKey> *
        userId:'TKey *
        twoFactorProvider:string *
        token:string -> IdentityResult
<ExtensionAttribute>
Public Shared Function NotifyTwoFactorToken(Of TUser As { Class, IUser(Of TKey) }, TKey As { Object, IEquatable(Of TKey) }) (
    manager As UserManager(Of TUser, TKey),
    userId As TKey,
    twoFactorProvider As String,
    token As String
) As IdentityResult

Parameters

  • userId
    Type: TKey

    The user ID.

Return Value

Type: Microsoft.AspNet.Identity.IdentityResult

The result of the notification.

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