1 write to Id
Microsoft.AspNetCore.Identity (1)
Generated\361d1da7f942c932\IdentityJsonSerializerContext.PasskeyUserEntity.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.PasskeyUserEntity(){ Id = (string)args[0], Name = (string)args[1], DisplayName = (string)args[2] },
9 references to Id
Microsoft.AspNetCore.Identity (9)
Generated\361d1da7f942c932\IdentityJsonSerializerContext.PasskeyUserEntity.g.cs (2)
60Getter = static obj => ((global::Microsoft.AspNetCore.Identity.PasskeyUserEntity)obj).Id, 137string __value_Id = ((global::Microsoft.AspNetCore.Identity.PasskeyUserEntity)value).Id;
IPasskeyHandler.cs (1)
119/// The passkey user entity associated with the user's passkeys. Its <see cref="PasskeyUserEntity.Id"/>
PasskeyHandler.cs (5)
68Id = BufferSource.FromString(userEntity.Id), 102var existingUser = await _userManager.FindByIdAsync(userEntity.Id).ConfigureAwait(false); 213if (!string.Equals(userId, userEntity.Id, StringComparison.Ordinal)) 216$"The user entity ID '{userEntity.Id}' does not match the ID '{userId}' of the specified user.", 223UserId = BufferSource.FromString(userEntity.Id),
SignInManager.cs (1)
661/// The <paramref name="userEntity"/> must have the same <see cref="PasskeyUserEntity.Id"/> that was passed to