IUserLockoutStore<TUser, TKey>.ResetAccessFailedCountAsync Method (TUser)

 

Used to reset the access failed count, typically after the account is successfully accessed.

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

Syntax

Task ResetAccessFailedCountAsync(
    TUser user
)
Task^ ResetAccessFailedCountAsync(
    TUser user
)
abstract ResetAccessFailedCountAsync : 
        user:'TUser -> Task
Function ResetAccessFailedCountAsync (
    user As TUser
) As Task

Parameters

  • user
    Type: TUser

    The user.

Return Value

Type: System.Threading.Tasks.Task

The task object representing the asynchronous operation.

See Also

IUserLockoutStore<TUser, TKey> Interface
Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top