3 references to NewPassword
Microsoft.AspNetCore.Identity (3)
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);