我有一个基于某些类的自定义配置.我的问题是我得到一个错误,说配置元素无法识别.课程如下:
[ConfigurationCollection(typeof(SectionItem), AddItemName = "Item", CollectionType = ConfigurationElementCollectionType.BasicMap)]
public class Sections : ConfigurationElementCollection
{
public SectionItem this[int index]
{
get { return BaseGet(index) as SectionItem; }
set
{
if (BaseGet(index) != null)
{
BaseRemoveAt(index);
}
BaseAdd(index, value);
}
}
public new SectionItem this[string response]
{
get { return (SectionItem)BaseGet(response); }
set
{
if (BaseGet(response) != null)
{
BaseRemoveAt(BaseIndexOf(BaseGet(response)));
}
BaseAdd(value);
}
}
protected override ConfigurationElement CreateNewElement()
{
return new SectionItem();
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((SectionItem)element).Key;
}
}
Run Code Online (Sandbox Code Playgroud)
和SectionItem班级:
public class SectionItem : ConfigurationElement
{
[ConfigurationProperty("key", IsRequired = true, IsKey = true)]
public string Key
{
get { return this["key"] as string; }
}
}
Run Code Online (Sandbox Code Playgroud)
如果我SectionItems在Sections类中添加一个类型的配置属性对我不起作用,因为我想在配置文件中SectonItems的Section标签内有多个.我已经搜索了解决方案,但我发现的一切都没有用这个来解决问题.为了更好地理解我想要实现的目标,我的配置看起来如何:
<configuration>
<configSections>
<section name="AdminConfig" type="XmlTest.AdminConfig, XmlTest"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<AdminConfig>
<Field name="field1" key="12345" path="asd"/>
<Section>
<Item key="12345"/>
<Item key="54321"/>
</Section>
</AdminConfig>
</configuration>
Run Code Online (Sandbox Code Playgroud)
Cos*_*scu 12
好的,所以我发现了问题.虽然这个Sections类有这个[ConfigurationCollection(typeof(SectionItem), AddItemName = "Item", CollectionType = ConfigurationElementCollectionType.BasicMap)]我必须在ConfigurationSection类中注释属性,如下所示:
[ConfigurationProperty("Section")]
[ConfigurationCollection(typeof(Sections), AddItemName = "Item")]
public Sections Sections
{
get
{
return (Sections)this["Section"];
}
}
Run Code Online (Sandbox Code Playgroud)
现在物品被识别,物品正常运作.
| 归档时间: |
|
| 查看次数: |
9116 次 |
| 最近记录: |