NameValueCollection的GetValues未返回具有重复项

时间:2017-01-08 00:20:35

标签: c# c#-4.0

我正在尝试在我的控制台应用程序中使用外部配置文件。我的App.config看起来像这样。

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="MyConfig" type="System.Configuration.NameValueFileSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
    <section name="MyConfig2" type="System.Configuration.NameValueFileSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
    <section name="MyConfig3" type="System.Configuration.NameValueFileSectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
  </configSections>
  <MyConfig configSource="MyCustomConfig.config"/>
  <MyConfig2 configSource="MyCustomConfig2.config"/>
  <MyConfig3 configSource="MyCustomConfig3.config"/>
  <startup>
  <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup>
</configuration>

在配置文件中,我很少有重复的键,这是预期的。

<?xml version="1.0" encoding="utf-8" ?>
<MyConfig>
  <add key="NodeName" value="node1"/>
  <add key="NodeName" value="node2"/>
  <add key="NodeName" value="node3"/>
  <add key="NodeName" value="node4"/>
  <add key="NodeName" value="node5"/>
  <add key="NodeProperty1" value="value1"/>
  <add key="NodeProperty2" value="value2"/>
  <add key="NodeProperty3" value="value3"/>
</MyConfig>

我正在尝试使用以下代码读取NodeName的值。

var ConfigData = (NameValueCollection)ConfigurationManager.GetSection("MyConfig");
foreach (string Nodename in ConfigData.GetValues("NodeName"))
{
    Console.WriteLine("Node Name:" + Nodename);
}

使用上面的代码,我只获取node5而不是获取node1到node5的值。尽管GetValues应该返回一个字符串数组,但该数组本身只有一个值。请让我知道需要纠正的内容,以便我可以阅读所有值。

我知道我可以使用逗号分隔值来获得所需的结果,但是节点名称的数量可以增长到很多。因此,在将新节点值添加为CSV时,我不希望有人设置配置以产生任何错误。因此,我想要一个选项,允许我将它们设置为单独的键值对。

1 个答案:

答案 0 :(得分:2)

配置类中没有支持您的方案的当前版本。你必须建立自己的。

我创建了这个实现,它将每个键的值作为List<string>返回。

public class NameValuesSection : IConfigurationSectionHandler
{
    public object Create(object parent, object configContext, XmlNode section)
    {
        var nameValues = new NameValuesCollection();
        foreach (XmlNode xmlNode in section.ChildNodes)
        {
            switch(xmlNode.Name)
            {
                case "add":
                    List<string> values;
                    string key = xmlNode.Attributes["key"].Value;
                    string value = xmlNode.Attributes["value"].Value;
                    // see if we already had this key
                    if (nameValues.TryGetValue(
                        key, 
                        out values))
                    {
                        // yep, let's add another value to the list
                        values.Add(value);
                    }
                    else
                    {
                        // nope, let's create the list and add it to the dictionary
                        values = new List<string>(new string[] { value });
                        nameValues.Add(key, values);
                    }
                    break;
                default:
                    // only add is supported now, not remove and clear
                    throw new ArgumentException("is not a valid node ", xmlNode.Name);
            }
        }
        return nameValues;
    }
}

返回的类型是通用字典的子类:

public class NameValuesCollection : Dictionary<string, List<string>>
{ 
    // add helper methods if needed
}

当您想要扩展各种方式来访问值时,这可能很有用,例如通过提供获取第一个项目或最后一个项目的选项。

在配置文件中,您必须调整configsection

<section name="MyConfig1" type="ConsoleApplication1.NameValuesSection, ConsoleApplication1"/>

Type是从[namespace]。[classname]构建的,并且在编译NameValuesSection的汇编后的逗号之后。

您可以使用以下新部分:

var data2 = ConfigurationManager.GetSection("MyConfig1");

var nvc = (NameValuesCollection)data2;
foreach (var keyname in nvc.Keys)
{
    Console.Write("Node Name: {0} = [" , keyname);
    // loop over all values in the List
    foreach(var val in nvc[keyname])
    {
         Console.Write("{0};", val);
    }
    Console.WriteLine("]");
 }

这将是输出:

Node Name: NodeName = [node1;node2;node3;node4;node5;]
Node Name: NodeProperty1 = [value1;]
Node Name: NodeProperty2 = [value2;]
Node Name: NodeProperty3 = [value3;]