4 implementations of GetLockoutEnabledAsync
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
142
public Task<bool>
GetLockoutEnabledAsync
(TUser user, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.Test (2)
UserManagerTest.cs (2)
1638
public Task<bool>
GetLockoutEnabledAsync
(PocoUser user, CancellationToken cancellationToken = default(CancellationToken))
1944
public Task<bool>
GetLockoutEnabledAsync
(PocoUser user, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
632
public virtual Task<bool>
GetLockoutEnabledAsync
(TUser user, CancellationToken cancellationToken = default(CancellationToken))
3 references to GetLockoutEnabledAsync
Microsoft.Extensions.Identity.Core (3)
UserManager.cs (3)
2096
if (!await store.
GetLockoutEnabledAsync
(user, CancellationToken).ConfigureAwait(false))
2144
return await store.
GetLockoutEnabledAsync
(user, CancellationToken).ConfigureAwait(false);
2191
if (!await store.
GetLockoutEnabledAsync
(user, CancellationToken).ConfigureAwait(false))