1

我试图在我的 app.config 中有以下部分结构

<MyConfig>
    <NewsFeeds site="abc">
        <add name="first" />
    </NewsFeeds>
    <NewsFeeds site="zyx">
        <add name="another" />
    </NewsFeeds>
</MyConfig>

我已经有该MyConfig部分的工作,但我不确定NewsFeed应该如何对集合进行编码,或者这种结构是否可行。到目前为止,我现在有以下课程:

[ConfigurationCollection(typeof(NewsFeedConfig))]
public class NewsFeedConfigCollection : ConfigurationElementCollection
{
    protected override ConfigurationElement CreateNewElement()
    {
        return new NewsFeedConfig();
    }

    protected override object GetElementKey(ConfigurationElement element)
    {
        return ((NewsFeedConfig)(element)).Name;
    }

    public NewsFeedConfig this[int idx] { get { return (NewsFeedConfig)BaseGet(idx); } }
}

public class NewsFeedConfig : ConfigurationElement
{
    [ConfigurationProperty("name", IsKey = true, IsRequired = true)]
    public string Name
    {
        get { return (string)base["name"]; }
        set { base["name"] = value; }
    }

    [ConfigurationProperty("source", IsRequired = true)]
    public string Source
    {
        get { return (string)base["source"]; }
        set { base["source"] = value; }
    }
}

但是,这要求所有新闻提要都在一个新闻提要集合下,然后我必须通过向Site每个元素添加一个属性来手动解析它们。这很好,但是是否有可能以上面定义的 XML 可以工作的方式来做到这一点?

4

1 回答 1

0

我想你会在这里找到答案:每个配置文件中的部分只能出现一次!为什么?

您可能希望将 xml 重组为更像:

<MyConfig>
  <NewsFeed site="abc">
    <Feeds>
      <Feed name="first" />
    </Feeds>
  </NewsFeed>
  <NewsFeed site="zyx">
    <Feeds>
      <Feed name="second" />
      <Feed name="third" />
      <Feed name="fourth" />
    </Feeds>
  </NewsFeed>
</MyConfig>
于 2012-07-09T22:18:29.827 回答