2

我想在项目中实现自定义配置部分。但是我不明白的东西所以不工作。

我的 App.config 看起来像这样:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="DepartmentConfigurationSection" type="Statistics.Config.DepartmentSection , Program1"/>
  </configSections>
  <s>
    <Cash>
      <add Number="1" Name="Money" />
    </Cash>
    <Departments>
      <add Id="1" Name="x" />
      <add Id="2" Name="y" />
    </Departments>
  </s>
</configuration>

我创建了一个名为DepartmentSection.cs的文件,它包含 ConfigurationElement、ConfigurationElementCollection 和 ConfigurationSection。类是这样的:

 public class DepartmentConfig : ConfigurationElement
    {
        public DepartmentConfig() { }

        public DepartmentConfig(int id, string name)
        {
            Id = id;
            Name = name;
        }

        [ConfigurationProperty("Id", IsRequired = true, IsKey = true)]
        public int Id
        {
            get { return (int)this["Id"]; }
            set { this["Id"] = value; }
        }

        [ConfigurationProperty("Name",  IsRequired = true, IsKey = false)]
        public string Name
        {
            get { return (string)this["Name"]; }
            set { this["Name"] = value; }
        }
    }


    public class DepartmentCollection : ConfigurationElementCollection
    {
        public DepartmentCollection()
        {
            Console.WriteLine("ServiceCollection Constructor");
        }

        public DepartmentConfig this[int index]
        {
            get { return (DepartmentConfig)BaseGet(index); }
            set
            {
                if (BaseGet(index) != null)
                {
                    BaseRemoveAt(index);
                }
                BaseAdd(index, value);
            }
        }

        public void Add(DepartmentConfig depConfig)
        {
            BaseAdd(depConfig);
        }

        public void Clear()
        {
            BaseClear();
        }

        protected override ConfigurationElement CreateNewElement()
        {
            return new DepartmentConfig();
        }

        protected override object GetElementKey(ConfigurationElement element)
        {
            return ((DepartmentConfig)element).Id;
        }

        public void Remove(DepartmentConfig depConfig)
        {
            BaseRemove(depConfig.Id);
        }

        public void RemoveAt(int index)
        {
            BaseRemoveAt(index);
        }

        public void Remove(string name)
        {
            BaseRemove(name);
        }
    }


    public class DepartmentConfigurationSection : ConfigurationSection
    {
        [ConfigurationProperty("Departments", IsDefaultCollection = false)]
        [ConfigurationCollection(typeof(DepartmentCollection),
            AddItemName = "add",
            ClearItemsName = "clear",
            RemoveItemName = "remove")]
        public DepartmentCollection Departments
        {
            get
            {
                return (DepartmentCollection)base["Departments"];
            }
        }
    }

我试图从处理程序中获取集合但没有成功。我试过这样,但给了我这个错误:“无法初始化系统配置”。

    DepartmentConfigurationSection serviceConfigSection =
    ConfigurationManager.GetSection("s") as DepartmentConfigurationSection;

    DepartmentConfig serviceConfig = serviceConfigSection.Departments[0];
4

2 回答 2

3

问题似乎在您的app.config(或web.config)中。包含您的自定义配置 XML 的元素必须与您nameconfigSections\section. 例如,为了让您的代码按编写的方式工作,app.config 应该如下所示:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="s" type="Statistics.Config.DepartmentConfigurationSection, Program1"/>
  </configSections>
  <s>
    <Cash>
      <add Number="1" Name="Money" />
    </Cash>
    <Departments>
      <add Id="1" Name="x" />
      <add Id="2" Name="y" />
    </Departments>
  </s>
</configuration>

如您所见,section name="s"匹配s元素的名称。此外,您将类型列为Statistics.Config.DeptartmentSection,但您的类名是DepartmentConfigurationSection,因此它应该与您尝试加载的类匹配。

于 2013-10-22T16:10:30.763 回答
1

我认为您需要在 DepartmentCollection 类中添加类级属性:

[DepartmentCollection(typeof(DepartmentConfig ), AddItemName = "add", CollectionType = ConfigurationElementCollectionType.BasicMap)]
于 2014-01-31T13:52:16.440 回答