ConfigurationElementCollection 对象是否可以为其元素包含另一个 ConfigurationElementCollection 对象?

发布于 2024-09-25 03:39:10 字数 1218 浏览 6 评论 0原文

ConfigurationElementCollection 对象是否可以为其元素包含另一个 ConfigurationElementCollection 对象?

我有这个 xml,其中 testsection 是节根:

<testsection>
    <head>
        <metaData>
            <metaGroup id="general">
                <meta name="Content-type" content="text/html; charset=utf-8" type="http-equiv" />
            </metaGroup>
            <metaGroup id="default">
                <meta name="something" content="test" type="name" />
            </metaGroup>
        </metaData>
    </head>
</testsection>

是否可以使用可以读取上面 xml 的 ConfigurationSection、ConfigurationElement 和 ConfigurationElementCollection 创建类?

问题是,当我们实现 ConfigurationElementCollection 时,我们无法定义集合中的元素是另一个 ConfigurationElementCollection 类型。

如果配置部分是这样的(没有metaGroup元素),我可以让它工作:

<testsection>
        <head>
            <metaData>
                    <meta name="Content-type" content="text/html; charset=utf-8" type="http-equiv" />
                    <meta name="something" content="test" type="name" />
            </metaData>
        </head>
    </testsection>

Can ConfigurationElementCollection object contain for its elements another ConfigurationElementCollection objects?

I have this xml where testsection is section root:

<testsection>
    <head>
        <metaData>
            <metaGroup id="general">
                <meta name="Content-type" content="text/html; charset=utf-8" type="http-equiv" />
            </metaGroup>
            <metaGroup id="default">
                <meta name="something" content="test" type="name" />
            </metaGroup>
        </metaData>
    </head>
</testsection>

Is it possible to create classes with ConfigurationSection, ConfigurationElement and ConfigurationElementCollection that can read above xml?

The problem is that when we are implementing ConfigurationElementCollection we can't define that element in collection is of type another ConfigurationElementCollection.

I can make it to work if configuration section is like this (without metaGroup elements):

<testsection>
        <head>
            <metaData>
                    <meta name="Content-type" content="text/html; charset=utf-8" type="http-equiv" />
                    <meta name="something" content="test" type="name" />
            </metaData>
        </head>
    </testsection>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白馒头 2024-10-02 03:39:10

我认为只有 ConfigurationElement 对象可以包含 ConfigurationElementCollection 对象(ConfigurationElementCollection 必须具有其父 ConfigurationElement)。所以我认为如果 metaGroup 是 ConfigurationElement 并且添加一个新的 ConfigurationElementCollection (metaGroupCollection) 作为元 ConfigurationElement 的父级,我可以解决这个问题。

<testsection>
        <head>
            <metaData>
                <metaGroup id="general">
                  <metaGroupCollection>
                      <meta name="Content-type" content="text/html; charset=utf-8" type="http-equiv" />
                  </metaGroupCollection>
                </metaGroup>
                <metaGroup id="default">
                  <metaGroupCollection>
                      <meta name="something" content="test" type="name" />
                  </metaGroupCollection>
                </metaGroup>
            </metaData>
        </head>
    </testsection>

I think that only ConfigurationElement objects can contain ConfigurationElementCollection objects (ConfigurationElementCollection must have for its parent ConfigurationElement). So I think that I can solve this problem if metaGroup would be ConfigurationElement and if I add a new ConfigurationElementCollection (metaGroupCollection) as parent of meta ConfigurationElement.

<testsection>
        <head>
            <metaData>
                <metaGroup id="general">
                  <metaGroupCollection>
                      <meta name="Content-type" content="text/html; charset=utf-8" type="http-equiv" />
                  </metaGroupCollection>
                </metaGroup>
                <metaGroup id="default">
                  <metaGroupCollection>
                      <meta name="something" content="test" type="name" />
                  </metaGroupCollection>
                </metaGroup>
            </metaData>
        </head>
    </testsection>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文