未处理的异常:System.Configuration.ConfigurationErrorsException:无法识别的元素'services'。嵌套的ConfigurationElementCollection

时间:2010-01-22 17:49:42

标签: .net configuration app-config

我在App.Config中有以下configSection。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="servicesConfig" type="Admin.Config.ServicesConfig, TestConsole"/>
  </configSections>
  <servicesConfig>
    <serviceGroups>
      <services group="group1">
        <add name="Service1" host="localhost"/>
        <add name="Service2" host="localhost"/>
      </services>
      <services group="groups">
        <add name="Service1" host="localhost"/>
        <add name="Service2" host="localhost"/>
      </services>
    </serviceGroups>
  </servicesConfig>
</configuration>

这已映射到c#

中的以下类

http://pastie.org/1538533

我收到以下错误

未处理的异常:System.Configuration.ConfigurationErrorsException:无法识别的元素'services'。

1 个答案:

答案 0 :(得分:1)

public class Service : ConfigurationElement

将服务更改为服务