如何从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>
答案 0 :(得分:31)
要使您的集合元素直接位于父元素(而不是子集合元素)中,您需要重新定义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>
答案 1 :(得分:7)
您可以使用System.Configuration.GetSection()方法读取自定义配置节。
有关GetSection()
的更多信息,请参阅http://msdn.microsoft.com/en-us/library/system.configuration.configuration.getsection.aspx答案 2 :(得分:4)
由于这不是标准的配置文件格式,因此您必须将配置文件作为XML文档打开,然后拉出这些部分(例如使用XPath)。用这个打开文档:
// Load the app.config file
XmlDocument xml = new XmlDocument();
xml.Load(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
答案 3 :(得分:0)
我认为你可以使用
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");
希望这能解决您的问题。快乐的编码。 :)