1 implementation of FindByIdAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
216public abstract Task<TUser?> FindByIdAsync(string userId, CancellationToken cancellationToken = default(CancellationToken));
1 reference to FindByIdAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
586return Store.FindByIdAsync(userId, CancellationToken);