2 implementations of FindPasskeyAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (1)
690public virtual async Task<UserPasskeyInfo?> FindPasskeyAsync(TUser user, byte[] credentialId, CancellationToken cancellationToken)
UserStore.cs (1)
835public virtual async Task<UserPasskeyInfo?> FindPasskeyAsync(TUser user, byte[] credentialId, CancellationToken cancellationToken)
1 reference to FindPasskeyAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
2666return passkeyStore.FindPasskeyAsync(user, credentialId, CancellationToken);