简体   繁体   English

阅读 web.config 部分以列出

[英]Read web.config section to List

I have this in a web.config :我在 web.config 中有这个:

<MySection>
    <Setting1 Value="10" />
    <Setting2 Value="20" />
    <Setting3 Value="30" />
    <Setting4 Value="40" />
</MySection>

I'd like read the all section "MySection" and get all value to a List<string> (ex : "10","20","30")我想阅读所有部分“MySection”并将所有值获取到List<string> (例如:“10”、“20”、“30”)

Thanks,谢谢,

First of all, I recommend use to use Unity Configuration .首先,我推荐使用Unity Configuration

Code:代码:

public class MySection : ConfigurationSection
{
    protected static ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();

    private static ConfigurationProperty propElements = new ConfigurationProperty("elements", typeof(MyElementCollection), null, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsDefaultCollection);

    static BotSection()
    {
        properties.Add(propElements);
    }

    [ConfigurationProperty("elements", DefaultValue = null, IsRequired = true)]
    [ConfigurationCollection(typeof(MyElementCollection), AddItemName = "add", ClearItemsName = "clear", RemoveItemName = "remove")]
    public MyElementCollection Elements
    {
        get
        {
            return (MyElementCollection)this[propElements];
        }
        set
        {
            this[propElements] = value;
        }
    }
}

public class MyElementCollection : ConfigurationElementCollection, 
                                   IEnumerable<ConfigurationElement> // most important difference with default solution
{
    public void Add(MyElement element)
    {
        base.BaseAdd(element);
    }

    public void Clear()
    {
        base.BaseClear();
    }

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

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

    IEnumerator<MyElement> IEnumerable<MyElement>.GetEnumerator()
    {
        return this.OfType<MyElement>().GetEnumerator();
    }
}

public class MyElement : ConfigurationElement
{
    protected static ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();

    private static ConfigurationProperty propValue= new ConfigurationProperty("value", typeof(int), -1, ConfigurationPropertyOptions.IsRequired);

    public int Value
    {
        get
        {
            return (int)this[propValue];
        }
        set
        {
            this[propValue] = value;
        }
    }
}

Config:配置:

<configuration>
    <configSections>
        <section name="MySection" type="MySection, MyAssembly"/>
    </configSections>
    <MySection>
        <elements>
            <clear />
            <add value="10" />
            <remove value="10" />
            <add value="20" />
            <add value="30" />
        </elements>
    </MySection>
</configuration>

I'd recommend you take a look at the excellent open source Configuration Section Designer project on CodePlex.我建议您查看 CodePlex 上优秀的开源配置部分设计器项目。 It allows you to create custom configuration sections using a designer hosted in Visual Studio.它允许您使用 Visual Studio 中托管的设计器创建自定义配置部分。

For example, a custom configuration section design like this:例如,像这样的自定义配置部分设计:

简单的自定义部分 will result in a configuration file like this:将产生如下配置文件:

<?xml version="1.0"?>
<configuration>
  <configSections>
    <section name="MySection" type="MyNamespace.MySection, MyAssembly"/>
  </configSections>
  <MySection xmlns="urn:MyNamespace">
    <MySetting Name="Test1" Value="One" />
    <MySetting Name="Test2" Value="Two" />
  </MySection>
</configuration>

which can be programmatically consumed like this:可以像这样以编程方式使用:

foreach (MySetting setting in MySection.Instance.Items)
{
    Console.WriteLine("{0}: {1}", setting.Name, setting.Value);
}

For anyone else who found this answer like I did, I've refined the answer to use more standard parts of the ConfigurationManager mark-up to reduce the amount of boiler plate code required:对于像我一样找到这个答案的其他人,我已经改进了答案以使用 ConfigurationManager 标记的更多标准部分来减少所需的样板代码量:

using System.Collections.Generic;
using System.Configuration;
using System.Linq;

namespace TestSite
{
    public class SiteConfiguration : ConfigurationSection
    {
        
        [ConfigurationProperty("listValues", DefaultValue = null, IsRequired = true)]
        [ConfigurationCollection(typeof(ListValues),
                                AddItemName = "add",
                                ClearItemsName = "clear",
                                RemoveItemName = "remove")]
        public ListValues ListValues
        {
            get { return (ListValues)this["listValues"]; }
            set { this["listValues"] = value; }
        }
    }

    /// <summary>
    /// Boilder plate holder for the collection of values
    /// </summary>
    public class ListValues : ConfigurationElementCollection, IEnumerable<ConfigurationElement>
    {
        protected override ConfigurationElement CreateNewElement() { return new ListElement(); }

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

        IEnumerator<ConfigurationElement> IEnumerable<ConfigurationElement>.GetEnumerator()
        {
            return this.OfType<ListElement>().GetEnumerator();
        }
    }

    /// <summary>
    /// Boilder plate holder for each value
    /// </summary>
    public class ListElement : ConfigurationElement
    {
        [ConfigurationProperty("value")]
        public string Value
        {
            get { return (string)this["value"]; }
            set { this["value"] = value; }
        }
    }
}

With the appropriate web.config:使用适当的 web.config:

<configSections>
    <section name="siteConfiguration" type="TestSite.SiteConfiguration, TestSite"/>
</configSections>
<siteConfiguration>
    <listValues>
        <clear/>
        <add value="one"/>
        <add value="two"/>
        <add value="three"/>
        <add value="four"/>
        <add value="five"/>
    </listValues>
</siteConfiguration>

Which can then be used like so:然后可以像这样使用它:

            List<string> list = new List<string>();
            ListValues values = ((SiteConfiguration)ConfigurationManager.GetSection("siteConfiguration")).ListValues;
            foreach (ListElement elem in values)
            {
                list.Add(elem.Value);
            }

And voila, all the values are now in a list.瞧,所有的值现在都在一个列表中。 (Tested in .Net Framework 4.8) (在 .Net Framework 4.8 中测试)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM