无法识别的元素"处理器" - 自定义配置部分

时间:2015-02-27 09:28:48

标签: c# app-config configuration-files

尝试在此处添加另一篇文章之后的自定义配置部分,但收到错误:

  

未处理的类型异常   ' 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>

任何线索?

2 个答案:

答案 0 :(得分:1)

为了让它像你在原始帖子中那样工作,你可以......

<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>

答案 1 :(得分:0)

我们在这里......

为了使上面的代码能够工作,我需要将“Processor”元素包含在“Processors”部分中,并使用另一个“Processors”元素:

<?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();
        }
星期五......新的星期一

相关问题