1 write to NewPassword
Microsoft.AspNetCore.Identity (1)
IdentityEndpointsJsonSerializerContext.InfoRequest.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = 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)
362
if (!string.IsNullOrEmpty(infoRequest.
NewPassword
))
370
var changePasswordResult = await userManager.ChangePasswordAsync(user, infoRequest.OldPassword, infoRequest.
NewPassword
);
IdentityEndpointsJsonSerializerContext.InfoRequest.g.cs (2)
78
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.InfoRequest)obj).
NewPassword
,
127
writer.WriteString(PropName_NewPassword, ((global::Microsoft.AspNetCore.Identity.Data.InfoRequest)value).
NewPassword
);