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