示例#1
0
        public static object Archer_Backup()
        {
            string userName;
            string password;

            StringReader sr = new StringReader(cmd_additional);
            userName = sr.ReadLine();
            password = ys.Common.Md5Hash(sr.ReadLine());
            sr.Close();

            ServerContactor sc = new ServerContactor();
            sc.Show();
            sc.BackupUserData(userName, password);

            return null;
        }
示例#2
0
        public static object Archer_Backup()
        {
            string userName;
            string password;

            StringReader sr = new StringReader(cmd_additional);

            userName = sr.ReadLine();
            password = ys.Common.Md5Hash(sr.ReadLine());
            sr.Close();

            ServerContactor sc = new ServerContactor();

            sc.Show();
            sc.BackupUserData(userName, password);

            return(null);
        }
示例#3
0
文件: Archer.cs 项目: ysmood/Archer
		public void Backup(object sender, EventArgs e)
		{
			ServerContactor sc = new ServerContactor();
			sc.Show();
			sc.BackupUserData();
		}