IUserTwoFactorStore<TUser>.GetTwoFactorEnabledAsync Method

Definition

Returns a flag indicating whether the specified user has two factor authentication enabled or not, as an asynchronous operation.

public:
 System::Threading::Tasks::Task<bool> ^ GetTwoFactorEnabledAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<bool> GetTwoFactorEnabledAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetTwoFactorEnabledAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Function GetTwoFactorEnabledAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of Boolean)

Parameters

user
TUser

The user whose two factor authentication enabled status should be set.

cancellationToken
CancellationToken

The CancellationToken used to propagate notifications that the operation should be canceled.

Returns

The Task that represents the asynchronous operation, containing a flag indicating whether the specified user has two factor authentication enabled or not.

Applies to