Check out example codes for "usermanager change password without current password". It will help you in understanding the concepts better.
Code Example 1
var user = await UserManager.FindByIdAsync(id);
var token = await UserManager.GeneratePasswordResetTokenAsync(user);
var result = await UserManager.ResetPasswordAsync(user, token, "[email protected]");
Learn ReactJs, React Native from akashmittal.com