在app.config中使用自定义部分会在WPF中引发异常

时间:2013-03-23 19:20:04

标签: wpf exception app-config

我对WPF和C#很新,并且使用app.config让我很困惑。完成一些非常基本的事情感到不必要的困难。我只想在我的应用程序中添加几个数据驱动设置,并希望使用app.config。

经过一番研究后,看起来“appSettings”已经过时并且没有进行类型检查,“applicationSettings”似乎已被弃用(甚至在VS 2012的标准架构中也没有)。所以,我现在正在尝试创建自定义配置部分。我根据示例编写了一个非常简单的示例,但它在启动期间抛出了一个TypeInitializationException。我正盯着代码,但看不出有什么问题。

app.config文件:

<configSections>
  <section name="applicationConfig" type="MyApp.ApplicationConfig, MyApp"/>
</configSections>

<applicationConfig
  UseLocalhost="true"
  WebServer="http://www.someserver.com"
  MachineId="999"/>

C#代码:

namespace MyApp
{
    public class ApplicationConfig : ConfigurationSection
    {
        public ApplicationConfig()
        {
        }

        public static ApplicationConfig GetConfig()
        {
            return (ApplicationConfig)System.Configuration.ConfigurationManager.GetSection("applicationConfig") ?? new ApplicationConfig();
        }

        [ConfigurationProperty("UseLocalhost", DefaultValue = false, IsRequired = false)]
        public bool UseLocalhost
        {
            get { return (bool)this["UseLocalhost"]; }
            set { this["UseLocalhost"] = value; }
        }

        [ConfigurationProperty("WebServer", IsRequired = true)]
        public string WebServer
        {
            get { return (string)this["WebServer"]; }
            set { this["WebServer"] = value; }
        }

        [ConfigurationProperty("MachineId", DefaultValue = 999, IsRequired = false)]
        public int MachineId
        {
            get { return (int)this["MachineId"]; }
            set { this["MachineId"] = value; }
        }
    }
}

感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

看起来异常是由其他一些代码抛出的 - 而不是你引用的配置节类。静态构造函数或静态字段初始值设定项抛出TypeInitializerException,您的代码都没有。你怎么称呼GetConfig()?底线是:查看代码中的其他位置,您的节类和配置文件XML似乎没问题。

答案 1 :(得分:0)

我在过去发现,您无法在配置的同一个程序集中拥有自定义配置对象。尝试将对象放入单独的程序集中,在项目中引用该新程序集,更新.config文件中自定义对象的程序集,然后从那里开始