1 write to OldPassword
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 OldPassword
Microsoft.AspNetCore.Identity (5)
Data\InfoRequest.cs (1)
20/// The optional new password for the authenticated user. If a new password is provided, the <see cref="OldPassword"/> is required.
IdentityApiEndpointRouteBuilderExtensions.cs (2)
364if (string.IsNullOrEmpty(infoRequest.OldPassword)) 370var changePasswordResult = await userManager.ChangePasswordAsync(user, infoRequest.OldPassword, infoRequest.NewPassword);
IdentityEndpointsJsonSerializerContext.InfoRequest.g.cs (2)
98Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.InfoRequest)obj).OldPassword, 128writer.WriteString(PropName_OldPassword, ((global::Microsoft.AspNetCore.Identity.Data.InfoRequest)value).OldPassword);