5 references to NewPassword
Microsoft.AspNetCore.Identity (5)
Data\InfoRequest.cs (1)
26/// The old password for the authenticated user. This is only required if a <see cref="NewPassword"/> is provided.
IdentityApiEndpointRouteBuilderExtensions.cs (2)
362if (!string.IsNullOrEmpty(infoRequest.NewPassword)) 370var changePasswordResult = await userManager.ChangePasswordAsync(user, infoRequest.OldPassword, infoRequest.NewPassword);
IdentityEndpointsJsonSerializerContext.InfoRequest.g.cs (2)
78Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.InfoRequest)obj).NewPassword, 127writer.WriteString(PropName_NewPassword, ((global::Microsoft.AspNetCore.Identity.Data.InfoRequest)value).NewPassword);