1 implementation of SetLockoutEnabledAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
647
public virtual Task
SetLockoutEnabledAsync
(TUser user, bool enabled, CancellationToken cancellationToken = default(CancellationToken))
2 references to SetLockoutEnabledAsync
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
468
await GetUserLockoutStore().
SetLockoutEnabledAsync
(user, true, CancellationToken).ConfigureAwait(false);
1741
await store.
SetLockoutEnabledAsync
(user, enabled, CancellationToken).ConfigureAwait(false);