试图在这里的另一篇文章后面添加一个自定义配置部分,但是我得到了错误:
'System.Configuration.ConfigurationErrorsException‘类型的未处理异常发生在System.Configuration.dll中 附加信息:无法识别的元素“处理器”。
在这条线上:
return (ProcessorsConfig)ConfigurationManager.GetSection("Processors") ?? new ProcessorsConfig();这是我的代码:
public class ProcessorsConfig : ConfigurationSection
{
public static ProcessorsConfig GetConfig()
{
return (ProcessorsConfig)ConfigurationManager.GetSection("Processors") ?? new ProcessorsConfig();
}
[ConfigurationProperty("Processors")]
[ConfigurationCollection(typeof(Processors), AddItemName = "Processor")]
public Processors Processors
{
get
{
object o = this["Processors"];
return o as Processors;
}
}
}
[ConfigurationCollection(typeof(Processor), AddItemName="Processor", CollectionType = ConfigurationElementCollectionType.BasicMap)]
public class Processors : ConfigurationElementCollection
{
public Processor this[int index]
{
get
{
return base.BaseGet(index) as Processor;
}
set
{
if (base.BaseGet(index) != null)
base.BaseRemoveAt(index);
this.BaseAdd(index, value);
}
}
public new Processor this[string responseString]
{
get { return (Processor)BaseGet(responseString); }
set
{
if (BaseGet(responseString)!=null)
BaseRemoveAt(BaseIndexOf(BaseGet(responseString)));
BaseAdd(value);
}
}
protected override ConfigurationElement CreateNewElement()
{
return new Processor();
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((Processor)element).Name;
}
}
public class Processor : ConfigurationElement
{
[ConfigurationProperty("name", IsRequired=true)]
public string Name
{
get
{
return this["name"] as string;
}
}
[ConfigurationProperty("searchPattern", IsRequired = true)]
public string SearchPattern
{
get
{
return this["searchPattern"] as string;
}
}
[ConfigurationProperty("collectionFolder", IsRequired = true)]
public string CollectionFolder
{
get
{
return this["collectionFolder"] as string;
}
}
[ConfigurationProperty("failureFolder", IsRequired = true)]
public string FailureFolder
{
get
{
return this["failureFolder"] as string;
}
}
[ConfigurationProperty("xmlOutputFolder", IsRequired = true)]
public string XMLOutputFolder
{
get
{
return this["xmlOutputFolder"] as string;
}
}
}我的app.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="Processors" type="Ideagen.PHE_PMEP_Processor_v2.Config.ProcessorsConfig, PHEPMEPProcessorv2"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
</startup>
<appSettings>
</appSettings>
<Processors>
<Processor name="test" collectionFolder="c:\temp\phev2\collection" searchPattern="*.txt" failureFolder="c:\temp\phev2\failure" xmlOutputFolder="c:\temp\phev2\xmlout"></Processor>
</Processors>
</configuration>有什么线索吗?
发布于 2015-02-27 09:35:07
现在我们有了..。
要使上面的代码正常工作,我需要将“处理器”元素封装在“处理器”部分中,并使用另一个“处理器”元素:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="Processors" type="Ideagen.PHE_PMEP_Processor_v2.Config.ProcessorsConfig, PHEPMEPProcessorv2"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
</startup>
<appSettings>
</appSettings>
<Processors>
<Processors>
<Processor name="test" collectionFolder="c:\temp\phev2\collection" searchPattern="*.txt" failureFolder="c:\temp\phev2\failure" xmlOutputFolder="c:\temp\phev2\xmlout"></Processor>
</Processors>
</Processors>
</configuration>但是,为了获得更清晰的解决方案,我将app.config更改为:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="ProcessorConfig" type="Ideagen.PHE_PMEP_Processor_v2.Config.ProcessorsConfig, PHEPMEPProcessorv2"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
</startup>
<appSettings>
</appSettings>
<ProcessorConfig>
<Processors>
<Processor name="test" collectionFolder="c:\temp\phev2\collection" searchPattern="*.txt" failureFolder="c:\temp\phev2\failure" xmlOutputFolder="c:\temp\phev2\xmlout"></Processor>
</Processors>
</ProcessorConfig>
</configuration>并将我的ProcessorConfig类更改如下:
public static ProcessorsConfig GetConfig()
{
return (ProcessorsConfig)ConfigurationManager.GetSection("ProcessorConfig") ?? new ProcessorsConfig();
}星期五..。新的星期一
发布于 2015-02-27 18:38:32
为了让它像你在最初的帖子里那样工作你可以.
<configuration>
<configSections>
<sectionGroup name="Processors">
<section name="Processor" type="Ideagen.PHE_PMEP_Processor_v2.Config.ProcessorsConfig, PHEPMEPProcessorv2"/>
</sectionGroup>
</configSections>
<Processors>
<Processor name="test" collectionFolder="c:\temp\phev2\collection" searchPattern="*.txt" failureFolder="c:\temp\phev2\failure" xmlOutputFolder="c:\temp\phev2\xmlout"></Processor>
</Processors>
</configuration>https://stackoverflow.com/questions/28761566
复制相似问题