如何从App.config中读取此自定义配置

本文关键字:读取 自定义 配置 config App | 更新日期: 2023-09-27 17:58:27

如何从App.config中读取此自定义配置?

<root name="myRoot" type="rootType">
    <element name="myName" type="myType" />
    <element name="hisName" type="hisType" />
    <element name="yourName" type="yourType" />
  </root>

而不是这个:

<root name="myRoot" type="rootType">
  <elements>
    <element name="myName" type="myType" />
    <element name="hisName" type="hisType" />
    <element name="yourName" type="yourType" />
  </elements>
  </root>

如何从App.config中读取此自定义配置

要使集合元素直接位于父元素(而不是子集合元素)中,需要重新定义ConfigurationProperty。例如,假设我有一个集合元素,例如:

public class TestConfigurationElement : ConfigurationElement
{
    [ConfigurationProperty("name", IsKey = true, IsRequired = true)]
    public string Name
    {
        get { return (string)this["name"]; }
    }
}

以及一个集合,例如:

[ConfigurationCollection(typeof(TestConfigurationElement), AddItemName = "test")]
public class TestConfigurationElementCollection : ConfigurationElementCollection
{
    protected override ConfigurationElement CreateNewElement()
    {
        return new TestConfigurationElement();
    }
    protected override object GetElementKey(ConfigurationElement element)
    {
        return ((TestConfigurationElement)element).Name;
    }
}

我需要将父节/元素定义为:

public class TestConfigurationSection : ConfigurationSection
{
    [ConfigurationProperty("", IsDefaultCollection = true)]
    public TestConfigurationElementCollection Tests
    {
        get { return (TestConfigurationElementCollection)this[""]; }
    }
}

请注意[ConfigurationProperty("", IsDefaultCollection = true)]属性。给它一个空名称,并将其设置为默认集合,允许我定义我的配置,如:

<testConfig>
  <test name="One" />
  <test name="Two" />
</testConfig>

代替:

<testConfig>
  <tests>
    <test name="One" />
    <test name="Two" />
  </tests>
</testConfig>

您可以使用System。配置用于读取自定义配置节的GetSection()方法。

请参阅http://msdn.microsoft.com/en-us/library/system.configuration.configuration.getsection.aspx了解有关GetSection()的更多信息

由于这不是标准的配置文件格式,您必须将配置文件作为XML文档打开,然后拉出部分(例如使用XPath)。使用以下内容打开文档:

// Load the app.config file
XmlDocument xml = new XmlDocument();
xml.Load(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);

我认为你可以使用

            XmlDocument appSettingsDoc = new XmlDocument();
            appSettingsDoc.Load(Assembly.GetExecutingAssembly().Location + ".config");
            XmlNode node = appSettingsDoc.SelectSingleNode("//appSettings");
            XmlElement element= (XmlElement)node.SelectSingleNode(string.Format("//add[@name='{0}']", "myname"));
            string typeValue = element.GetAttribute("type");

希望这能解决你的问题。快乐编码。:)