1 write to Id
Microsoft.AspNetCore.Identity (1)
_generated\33\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\33\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)
77/// The passkey user entity associated with the user's passkeys. Its <see cref="PasskeyUserEntity.Id"/>
PasskeyHandler.cs (5)
61Id = BufferSource.FromString(userEntity.Id), 94var existingUser = await _userManager.FindByIdAsync(userEntity.Id).ConfigureAwait(false); 193if (!string.Equals(userId, userEntity.Id, StringComparison.Ordinal)) 196$"The user entity ID '{userEntity.Id}' does not match the ID '{userId}' of the specified user.", 203UserId = BufferSource.FromString(userEntity.Id),
SignInManager.cs (1)
622/// The <paramref name="userEntity"/> must have the same <see cref="PasskeyUserEntity.Id"/> that was passed to