UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>.CountCodesAsync 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.
Returns how many recovery code are still valid for a user.
public:
virtual System::Threading::Tasks::Task<int> ^ CountCodesAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public virtual System.Threading.Tasks.Task<int> CountCodesAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member CountCodesAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<int>
override this.CountCodesAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<int>
Public Overridable Function CountCodesAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of Integer)
Parameters
- user
- TUser
The user who owns the recovery code.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
The number of valid recovery codes for the user..