2

我正在使用 System.Configuration 命名空间类型来存储我的应用程序的配置。我需要存储一组原始类型(System.Double)作为该配置的一部分。创建以下内容似乎有点矫枉过正:

[ConfigurationCollection(typeof(double), AddItemName="TemperaturePoint", 
    CollectionType=ConfigurationElementCollectionType.BasicMap)]
class DoubleCollection : ConfigurationElementCollection
{
    protected override ConfigurationElement CreateNewElement()
    {
        return // Do I need to create a custom ConfigurationElement that wraps a double?
    }

    protected override object GetElementKey(ConfigurationElement element)
    {
        return // Also not sure what to do here
    }
}

我无法想象我是第一个遇到这个问题的人。有任何想法吗?

4

3 回答 3

3

没有明确的“嘿,我想在此处填充值列表”处理程序,但您有几个选择:

实现一个自定义IConfigurationSectionHandler(比元素集合等简单的方式)并通过以下方式引用:

<configSections>
    <sectionGroup name="mysection" type="type of handler"/>
</configSections>

<mysection>
  some xml representation of values
</mysection>

捎带一个现有的处理程序,比如SingleTagSectionHandler- 这是一个看起来毛茸茸的衬里,它从配置文件中的这个条目中提取一组值:

<configuration>
    <configSections>
        <section name="TemperaturePoints" 
             type="System.Configuration.SingleTagSectionHandler" 
             allowLocation="true" 
             allowDefinition="Everywhere"/>
    </configSections>

    <TemperaturePoints values="1,2,3,4,5,6,7,8,9,10"/>
</configuration>


var values = ((string)((Hashtable)ConfigurationManager
     .GetSection("TemperaturePoints"))["values"])
     .Split(',')
     .Select(double.Parse);

或者分开一点:

var section = (Hashtable)ConfigurationManager.GetSection("TemperaturePoints");
var packedValues = (string)section["values"];
var unpackedValues = packedValues.Split(',');
var asDoubles = unpackedValues.Select(double.Parse).ToArray();
于 2013-03-04T18:16:31.360 回答
3

我能够在没有太多定制的情况下让它工作。它类似于 JerKimball 的答案,但我避免使用 ConfigurationProperty 的 TypeConverter 属性来处理自定义字符串处理。

我的自定义配置部分实现:

using System.Configuration;
using System.ComponentModel;

class DomainConfig : ConfigurationSection
{     

    [ConfigurationProperty("DoubleArray")]
    [TypeConverter(typeof(CommaDelimitedStringCollectionConverter))]
    public CommaDelimitedStringCollection DoubleArray
    {
        get { return (CommaDelimitedStringCollection)base["DoubleArray"]; }
    }
}

如何使用:

var doubleValues = from string item in configSection.DoubleArray select double.Parse(item);

和配置文件:

<DomainConfig DoubleArray="1.0,2.0,3.0"></DomainConfig>
于 2013-03-05T18:34:03.907 回答
1

这是我感觉正确的实现。

  • 每个值在单独的行上(便于区分)
  • 高信噪比编码的最小开销
  • 简单读取数值

底部提供了有限的解释。如果您想了解更多 System.Configuration API 的基础知识,我推荐 Jon Rista 在 CodeProject.com 上的Unraveling the Mysteries of .NET 2.0 Configuration系列文章。

应用程序配置

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <configSections>
        <section name="strings" 
                 type="Sample.StringCollectionConfigSection, SampleAssembly"/>
        <section name="databases" 
                  type="Sample.StringCollectionConfigSection, SampleAssembly"/>
    </configSections>
    <strings>
        <add>dbo.Foo</add>
        <add>dbo.Bar</add>
    </strings>
    <databases>
        <add>Development</add>
        <add>Test</add>
        <add>Staging</add>
    </databases>
</configuration>

API 使用

class Program
{
    static void Main(string[] args)
    {
        foreach (var s in StringCollectionConfigSection.Named("strings"))
        {
            Console.WriteLine(ignoreExpression);
        }
        foreach (var d in StringCollectionConfigSection.Named("strings"))
        {
            Console.WriteLine(ignoreExpression);
        }
    }
}

执行

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Xml;

hnamespace Sample 
{
    public sealed class StringCollectionConfigSection : ConfigurationSection
    {
        public static StringElementCollection Named(string configSection)
        {
            var section = (StringCollectionConfigSection)ConfigurationManager.GetSection(configSection);
            return section.Elements;
        }

        [ConfigurationProperty("", Options = ConfigurationPropertyOptions.IsDefaultCollection)]
        public StringElementCollection Elements
        {
            get { return (StringElementCollection)base[""]; }
            set { base[""] = value; }
        }
    }

    [ConfigurationCollection(typeof(StringElement))]
    public sealed class StringElementCollection : ConfigurationElementCollection, IEnumerable<string>
    {
        public StringElement this[int index]
        {
            get { return (StringElement)BaseGet(index); }
            set
            {
                if (BaseGet(index) != null) { BaseRemoveAt(index); }
                BaseAdd(index, value);
            }
        }

        public new StringElement this[string key]
        {
            get { return (StringElement)BaseGet(key); }
        }

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

        protected override object GetElementKey(ConfigurationElement element)
        {
            return ((StringElement)element).Value;
        }

        public new IEnumerator<string> GetEnumerator()
        {
            var enumerator = base.GetEnumerator();
            while (enumerator.MoveNext())
            {
                yield return ((StringElement)enumerator.Current).Value;
            }
        }
    }

    public class StringElement : ConfigurationElement
    {
        protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey)
        {
            Value = (string)reader.ReadElementContentAs(typeof(string), null);
        }

        public string Value {get; private set; }
    }
}

关于代码的学习点。

  • 在 app.config 中,确保在定义配置部分的名称时使用命名空间和程序集名称。
  • 我不希望我的收藏中出现额外的子元素。我只想要保存字符串值的元素。
    • 类中属性上ConfigurationPropertyAttribute定义的使用空名来完成我想要实现的默认集合样式。StringElementCollection ElementsStringCollectionConfigSection

<strings>
    <elements>
       <add>...</add>
       <add>...</add>
    <elements>
</strings>
  • DeserializeElementon允许我使用 XmlNode的StringElementinnerText 作为值,而不是属性。

  • IEnumerator<string>onConfigurationElementCollection加上StringElementCollection Named(string configSection)onStringCollectionConfigSection给了我想要的干净的 API 。

于 2015-11-23T18:00:27.173 回答