Exemplo n.º 1
0
		public static BaseWebSection GetConfig()
		{
			try
			{
				BaseWebSection section = ConfigurationBroker.GetSection("baseWebPageSection") as BaseWebSection;
				if (section == null)
					section = new BaseWebSection();

				return section;
			}
			catch (ConfigurationErrorsException ex)
			{
				System.Diagnostics.Debug.WriteLine(ex.Message + Environment.NewLine + ex.StackTrace, "re");
				//当前节点可以不配置,直接创建对象并使用默认值
				return new BaseWebSection();
				//throw new ConfigurationErrorsException(string.Format(HYW2007Resource.ConfigurationErrMgs, "baseWebPageSection"));
			}
		}
Exemplo n.º 2
0
        public static BaseWebSection GetConfig()
        {
            try
            {
                BaseWebSection section = ConfigurationBroker.GetSection("baseWebPageSection") as BaseWebSection;
                if (section == null)
                {
                    section = new BaseWebSection();
                }

                return(section);
            }
            catch (ConfigurationErrorsException ex)
            {
                System.Diagnostics.Debug.WriteLine(ex.Message + Environment.NewLine + ex.StackTrace, "re");
                //当前节点可以不配置,直接创建对象并使用默认值
                return(new BaseWebSection());
                //throw new ConfigurationErrorsException(string.Format(HYW2007Resource.ConfigurationErrMgs, "baseWebPageSection"));
            }
        }