Esempio n. 1
0
 /// <summary>
 /// 序列化配置信息为XML
 /// </summary>
 /// <param name="configinfo">配置信息</param>
 /// <param name="configFilePath">配置文件完整路径</param>
 public static MyAttachmentsTypeConfigInfo Serialiaze(MyAttachmentsTypeConfigInfo configinfo, string configFilePath)
 {
     lock (lockHelper)
     {
         SerializationHelper.Save(configinfo, configFilePath);
     }
     return(configinfo);
 }
Esempio n. 2
0
        /// <summary>
        /// 静态构造函数初始化相应实例和定时器
        /// </summary>
        static MyAttachmentsTypeConfigs()
        {
            m_configinfo = MyAttachmentsTypeConfigFileManager.LoadConfig();

            generalConfigTimer.AutoReset = true;
            generalConfigTimer.Enabled   = true;
            generalConfigTimer.Elapsed  += new System.Timers.ElapsedEventHandler(Timer_Elapsed);
            generalConfigTimer.Start();
        }
        /// <summary>
        /// 静态构造函数初始化相应实例和定时器
        /// </summary>
        static MyAttachmentsTypeConfigs()
        {
            m_configinfo = MyAttachmentsTypeConfigFileManager.LoadConfig();

            generalConfigTimer.AutoReset = true;
            generalConfigTimer.Enabled = true;
            generalConfigTimer.Elapsed += new System.Timers.ElapsedEventHandler(Timer_Elapsed);
            generalConfigTimer.Start();
        }
        /// <summary>
        /// 初始化文件修改时间和对象实例
        /// </summary>
        static MyAttachmentsTypeConfigFileManager()
        {
            m_fileoldchange = System.IO.File.GetLastWriteTime(ConfigFilePath);

            try
            {
                m_configinfo = (MyAttachmentsTypeConfigInfo)DefaultConfigFileManager.DeserializeInfo(ConfigFilePath, typeof(MyAttachmentsTypeConfigInfo));
            }
            catch
            {
                if (File.Exists(ConfigFilePath))
                {
                    ReviseConfig();
                    m_configinfo = (MyAttachmentsTypeConfigInfo)DefaultConfigFileManager.DeserializeInfo(ConfigFilePath, typeof(MyAttachmentsTypeConfigInfo));
                }
            }
        }
        /// <summary>
        /// 初始化文件修改时间和对象实例
        /// </summary>
        static MyAttachmentsTypeConfigFileManager()
        {
            m_fileoldchange = System.IO.File.GetLastWriteTime(ConfigFilePath);

            try
            {
                m_configinfo = (MyAttachmentsTypeConfigInfo)DefaultConfigFileManager.DeserializeInfo(ConfigFilePath, typeof(MyAttachmentsTypeConfigInfo));
            }
            catch
            {
                if (File.Exists(ConfigFilePath))
                {
                    ReviseConfig();
                    m_configinfo = (MyAttachmentsTypeConfigInfo)DefaultConfigFileManager.DeserializeInfo(ConfigFilePath, typeof(MyAttachmentsTypeConfigInfo));
                }
            }
        }
Esempio n. 6
0
        /// <summary>
        /// 获取默认模板id
        /// </summary>
        /// <returns></returns>
        //public static int GetDefaultTemplateID()
        //{
        //     return GetConfig().Templateid;
        //}



        /// <summary>
        /// 获得设置项信息
        /// </summary>
        /// <returns>设置项</returns>
        public static bool SetIpDenyAccess(string denyipaccess)
        {
            bool result;

            lock (lockHelper)
            {
                try
                {
                    MyAttachmentsTypeConfigInfo configInfo = MyAttachmentsTypeConfigs.GetConfig();
                    //configInfo.Ipdenyaccess = configInfo.Ipdenyaccess + "\n" + denyipaccess;
                    MyAttachmentsTypeConfigs.Serialiaze(configInfo, Utils.GetMapPath(BaseConfigs.GetForumPath + "config/MyAttachmentsTypeConfiginfo.config"));
                    result = true;
                }
                catch
                {
                    return(false);
                }
            }
            return(result);
        }
Esempio n. 7
0
        /// <summary>
        /// 获取默认模板id
        /// </summary>
        /// <returns></returns>
        //public static int GetDefaultTemplateID()
        //{
        //     return GetConfig().Templateid;
        //}



        /// <summary>
        /// 获得设置项信息
        /// </summary>
        /// <returns>设置项</returns>
        public static bool SetIpDenyAccess(string denyipaccess)
        {
            bool result;

            lock (lockHelper)
            {
                try
                {
                    MyAttachmentsTypeConfigInfo configInfo = MyAttachmentsTypeConfigs.GetConfig();
                    //configInfo.Ipdenyaccess = configInfo.Ipdenyaccess + "\n" + denyipaccess;
                    MyAttachmentsTypeConfigs.Serialiaze(configInfo, AppDomain.CurrentDomain.BaseDirectory + "config/MyAttachmentsTypeConfiginfo.config");
                    result = true;
                }
                catch
                {
                    return(false);
                }
            }
            return(result);
        }
Esempio n. 8
0
 /// <summary>
 /// 重设配置类实例
 /// </summary>
 public static void ResetConfig()
 {
     m_configinfo = MyAttachmentsTypeConfigFileManager.LoadConfig();
 }
 /// <summary>
 /// 重设配置类实例
 /// </summary>
 public static void ResetConfig()
 {
     m_configinfo = MyAttachmentsTypeConfigFileManager.LoadConfig();
 }
		/// <summary>
		/// 序列化配置信息为XML
		/// </summary>
		/// <param name="configinfo">配置信息</param>
		/// <param name="configFilePath">配置文件完整路径</param>
        public static MyAttachmentsTypeConfigInfo Serialiaze(MyAttachmentsTypeConfigInfo configinfo, string configFilePath)
		{
			lock(lockHelper) 
			{
				SerializationHelper.Save(configinfo, configFilePath);
			}
			return configinfo;
		}