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