1 implementation of GetLockoutEnabledAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
632public virtual Task<bool> GetLockoutEnabledAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
3 references to GetLockoutEnabledAsync
Microsoft.Extensions.Identity.Core (3)
UserManager.cs (3)
2098if (!await store.GetLockoutEnabledAsync(user, CancellationToken).ConfigureAwait(false)) 2146return await store.GetLockoutEnabledAsync(user, CancellationToken).ConfigureAwait(false); 2193if (!await store.GetLockoutEnabledAsync(user, CancellationToken).ConfigureAwait(false))