NetWrok.API.ResetPassword C# (CSharp) Method

ResetPassword() public method

public ResetPassword ( string email, string token, string password ) : Request
email string
token string
password string
return Request
        public Request ResetPassword(string email, string token, string password)
        {
            password = SHA256 (password);
            return Request ("member.password_reset", email, token, password);
        }