.NET 配置文件中的自定义节处理程序中的嵌套级别
我知道我可以在自己的自定义 app.config 部分中有 1 个父元素和 1 个子元素,如下所示:
<sectionGroup>
<section>
<element />
</section>
</sectionGroup>
我的问题是,我可以有比这更多的一层或多层嵌套吗?就像这样:
<biggestSectionGroup>
<biggerSectionGroup>
<sectionGroup>
<section>
<element />
</section>
</sectionGroup>
</biggerSectionGroup>
</biggestSectionGroup>
I know I can have 1 parent element and 1 child element in my own custom app.config section like so:
<sectionGroup>
<section>
<element />
</section>
</sectionGroup>
My question is, can I have one or more levels of nesting more than this? Like so:
<biggestSectionGroup>
<biggerSectionGroup>
<sectionGroup>
<section>
<element />
</section>
</sectionGroup>
</biggerSectionGroup>
</biggestSectionGroup>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以。
有一系列(稍微旧但仍然非常好的)文章(第 1 部分、第 2 部分 第 3 部分) 描述了您可能想了解的有关配置文件的所有信息。他们详细描述了如何实现您所描述的目标。
Yes you can.
There is a series of (slightly old but still very good) articles (part 1, part 2 & part 3) on CodeProject that describe everything you could want to know about config files. They describe in detail how to attain what you describe.