示例#1
0
        /// <summary>
        /// 获取保存的登录pwd
        /// </summary>
        /// <returns></returns>
        public string GetRealPwd()
        {
            //string upwd = PropertiesReader.GetValue("pwd");
            string upwd  = confUser.getKeyValue("pwd");
            string rePwd = HexUtil.HexToStr(upwd);

            return(rePwd);
        }
示例#2
0
        /// <summary>
        /// 获取登录email
        /// </summary>
        /// <returns></returns>
        public string GetRealUname()
        {
            //string uanme=PropertiesReader.GetValue("uanme");
            string uanme  = confUser.getKeyValue("uanme");
            string reName = HexUtil.HexToStr(uanme);

            return(reName);
        }