IUserLockoutStore<TUser>.GetAccessFailedCountAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the current failed access count for the specified user
.
public:
System::Threading::Tasks::Task<int> ^ GetAccessFailedCountAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<int> GetAccessFailedCountAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetAccessFailedCountAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<int>
Public Function GetAccessFailedCountAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of Integer)
Parameters
- user
- TUser
The user whose failed access count should be retrieved.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
The Task that represents the asynchronous operation, containing the failed access count.