15

我试过了

<appSettings >
    <add key="List" value="1"/>
    <add key="List" value="2"/>
    <add key="List" value="3"/>
  </appSettings >

System.Configuration.ConfigurationManager.AppSettings.GetValues("List");

但我只得到最后一个成员。我怎样才能轻松解决这个问题?

4

5 回答 5

27

我已经处理了一个类似的问题,我用这段代码做到了。希望这对您的问题有所帮助。

在这种情况下,列表(类似于我的 URLSection)将在 web.config 中有一个完整的配置部分,然后您可以从该部分获取所有值。

<configSections>
    <section name="URLSection" type="A.WebConfigSection,A,Version=1.0.0.0,Culture=neutral,PublicKeyToken=null"/>
</configSections>

<appSettings></appSettings>

<URLSection>
    <urlCollection>
        <add url="1" value="a"/>
        <add url="2" value="b"/>
    </urlCollection>
</URLSection>

我为此做了三个类:ConfigElement、ConfigElementCollection、WebConfigSection。

配置元素

using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;

namespace A
{
  public class ConfigElement:System.Configuration.ConfigurationElement
{
    [ConfigurationProperty("url",IsRequired=true) ]
    public string url
    {
        get
        {
            return this["url"] as string;
        }
    }

    [ConfigurationProperty("value", IsRequired = true)]
    public string value
    {
        get
        {
            return this["value"] as string;
        }
    }



  }
}

配置元素集合

using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;

namespace A
{
  public class ConfigElementCollection:ConfigurationElementCollection
 {
    public ConfigElement this[int index]
    {
        get
        {
            return base.BaseGet(index) as ConfigElement;
        }

    }

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

    protected override object GetElementKey(ConfigurationElement element)
    {
        return ((ConfigElement)(element)).url;
    }
 }
}

网络配置部分

using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;

namespace A
{
 public class WebConfigSection:ConfigurationSection
 {

    public WebConfigSection()
    {

    }

    [ConfigurationProperty("urlCollection")]
    public ConfigElementCollection allValues
    {
        get
        {
            return this["urlCollection"] as ConfigElementCollection;
        }
    }

    public static WebConfigSection GetConfigSection()
    {
        return ConfigurationSettings.GetConfig("URLSection") as WebConfigSection;
    }
 }
}
于 2009-11-18T11:56:46.297 回答
4
    foreach (string str in ConfigurationManager.AppSettings.AllKeys)
    {
        if (str.ToUpper().IndexOf("SOMESPECIAL") > -1) //the somespecial ones you want to add in
            lstList.Add(ConfigurationManager.AppSettings[str]);
    }
于 2012-01-13T17:39:19.607 回答
3

NinjaSettings开箱即用。

在包管理器控制台中

Install-Package NinjaSettings

您可以将您的清单声明为

  <appSettings>
    <add key="List" value="50,20,10,100"/>
  </appSettings>

然后创建一个接口,将列表映射到任何 ICollection 或数组

public interface IAppSettings
{
    List<int> List { get; }
}

然后访问您的设置用户 NinjaSettings 包装器。通常你会使用 IOC 来连接它,但基本用法是

   var settings = new NinjaSettings<IAppSettings>().Settings;

   int total = 0;
   for (var i in settings.List) 
   {
      total+=i;        
   }
于 2013-12-31T06:24:50.660 回答
1

最好将此信息放在单独的 XML 文件中,并在 AppSettings 中引用该文件。这将为您在如何检索和使用信息方面提供更大的灵活性。

唯一的事情是您想要创建一个单独的(静态?)类,以类似于 System.Configuration.ConfigurationManager.AppSettings 类的方式读取 XML。

另一方面,如果它必须在您的 Web.Config 文件中,我建议实现此目的的唯一方法是在一个“列表”设置中使用 [pipe/comma/semi-colon] 分隔数组.

于 2009-11-18T11:42:31.810 回答
1

Haacked 提供了一种简洁的配置设置方法。他的方法使用派生自 ConfigurationSection 的一个类。因此,对于他的博客示例,您的 app.config 或 web.config xml 表示将如下所示:

<configuration>
  <configSections>
    <section name="BlogSettings" type="Fully.Qualified.TypeName.BlogSettings,   
      AssemblyName" />
  </configSections>
  <BlogSettings frontPagePostCount="10" title="You’ve Been Haacked" />
</configuration>

这值得一读:

http://haacked.com/archive/2007/03/12/custom-configuration-sections-in-3-easy-steps.aspx

于 2011-09-30T13:35:53.280 回答