UserManager<TUser>.FindByPasskeyIdAsync(Byte[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Finds the user associated with a passkey.
public virtual System.Threading.Tasks.Task<TUser?> FindByPasskeyIdAsync(byte[] credentialId);
abstract member FindByPasskeyIdAsync : byte[] -> System.Threading.Tasks.Task<'User (requires 'User : null)>
override this.FindByPasskeyIdAsync : byte[] -> System.Threading.Tasks.Task<'User (requires 'User : null)>
Public Overridable Function FindByPasskeyIdAsync (credentialId As Byte()) As Task(Of TUser)
Parameters
- credentialId
- Byte[]
The credential ID to search for.
Returns
The Task that represents the asynchronous operation, containing the user if found, otherwise null
.