4 implementations of GetLockoutEnabledAsync
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
142public Task<bool> GetLockoutEnabledAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.Test (2)
UserManagerTest.cs (2)
1671public Task<bool> GetLockoutEnabledAsync(PocoUser user, CancellationToken cancellationToken = default(CancellationToken)) 1977public Task<bool> GetLockoutEnabledAsync(PocoUser user, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
632public virtual Task<bool> GetLockoutEnabledAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
4 references to GetLockoutEnabledAsync
Microsoft.AspNetCore.Identity.Test (1)
UserManagerTest.cs (1)
1257store.GetLockoutEnabledAsync(user, It.IsAny<CancellationToken>()))
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))