Пример #1
0
        public int Login(string username, string password, string server)
        {
            // Login : trả về bool, thành công - thất bại
            // Hoặc tra về errorCode
            if (BUSAction.Login(username, password, server) == 0)
            {
                //xac dinh lang dua vao server
                string[] split = server.Split('.');
                string   path  = System.Reflection.Assembly.GetExecutingAssembly().Location;
                path        = Path.GetDirectoryName(path);
                Gloval.Dict = XmlHelper.LoadFile(string.Format(path + "\\Lang\\{0}.xml", split[1]));

                //test
                //string strout = "";
                //Gloval.Dict.TryGetValue("test3", out strout);
                //return strout;
                //MessageBox.Show(strout);
                return(0);
            }
            return(1);
        }
Пример #2
0
        public int Login(string username, string password, string server)
        {
            // Login : trả về bool, thành công - thất bại
            // Hoặc tra về errorCode
            if (BUSAction.Login(username, password, server) == 0)
            {
                //xac dinh lang dua vao server
                string[] split = server.Split('.');
                string   path  = System.Reflection.Assembly.GetExecutingAssembly().Location;
                path             = Path.GetDirectoryName(path);
                Gloval.Dict      = XmlHelper.LoadFile(string.Format(path + "\\Lang\\{0}.xml", split[1]));
                Authenticated    = true;
                bStopAutoRequest = false;
                InitAutoRequest();

                Gloval.bEmpireOverviewIsNewData = false;
                return(0);
            }

            Authenticated = false;
            return(1);
        }