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.
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)
'Declaration
Function ResetAccessFailedCountAsync ( _
user As TUser _
) As Task
'Usage
Dim instance As IUserLockoutStore
Dim user As TUser
Dim returnValue As Task
returnValue = instance.ResetAccessFailedCountAsync(user)
Task ResetAccessFailedCountAsync(
TUser user
)
Task^ ResetAccessFailedCountAsync(
TUser user
)
abstract ResetAccessFailedCountAsync :
user:'TUser -> Task
function ResetAccessFailedCountAsync(
user : TUser
) : Task
- user
Type: TUser
The user.
Type: System.Threading.Tasks.Task
The task object representing the asynchronous operation.
IUserLockoutStore<TUser, TKey> Interface