TeamMentor.CoreLib.TM_WebServices.PasswordReset C# (CSharp) Method

PasswordReset() private method

private PasswordReset ( string userName, System.Guid token, string newPassword ) : bool
userName string
token System.Guid
newPassword string
return bool
        public bool PasswordReset(string userName, Guid token, string newPassword)
        {
            return userData.passwordReset(userName, token, newPassword);
        }
TM_WebServices