/// <summary>
 /// Changes the password.
 /// </summary>
 /// <param name="currentPassword">The current password.</param>
 /// <param name="newPassword">The new password.</param>
 /// <returns></returns>
 public AuthenticationResult ChangePassword(string currentPassword, string newPassword)
 {
     return(AuthenticationResult.Error("ChangePasswordFailed"));
 }