AIMS_BD_IATI.WebAPI.Models.Authentication.AccountMembershipService.ChangePassword C# (CSharp) Méthode

ChangePassword() public méthode

public ChangePassword ( string userName, string oldPassword, string newPassword ) : bool
userName string
oldPassword string
newPassword string
Résultat bool
        public bool ChangePassword(string userName, string oldPassword, string newPassword)
        {
            return new CustomMembershipProvider().ChangePassword(userName, oldPassword, newPassword);
        }