1 implementation of FindByNameAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
256public abstract Task<TUser?> FindByNameAsync(string normalizedUserName, CancellationToken cancellationToken = default(CancellationToken));
2 references to FindByNameAsync
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
602var user = await Store.FindByNameAsync(userName, CancellationToken).ConfigureAwait(false); 614user = await Store.FindByNameAsync(oldKey, CancellationToken).ConfigureAwait(false);