1 write to NewPassword
Microsoft.AspNetCore.Identity (1)
IdentityEndpointsJsonSerializerContext.InfoRequest.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.Data.InfoRequest(){ NewEmail = (string)args[0], NewPassword = (string)args[1], OldPassword = (string)args[2] },
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);