5 implementations of GetLockoutEnabledAsync
Identity.DefaultUI.WebSite (1)
src\Identity\test\InMemory.Test\InMemoryUserStore.cs (1)
142public Task<bool> GetLockoutEnabledAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
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)
1288public Task<bool> GetLockoutEnabledAsync(PocoUser user, CancellationToken cancellationToken = default(CancellationToken)) 1568public 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))
3 references to GetLockoutEnabledAsync
Microsoft.Extensions.Identity.Core (3)
UserManager.cs (3)
1729if (!await store.GetLockoutEnabledAsync(user, CancellationToken).ConfigureAwait(false)) 1768return await store.GetLockoutEnabledAsync(user, CancellationToken).ConfigureAwait(false); 1799if (!await store.GetLockoutEnabledAsync(user, CancellationToken).ConfigureAwait(false))