是否有强类型类或方法在XML解析类之外以编程方式直接访问configuration/configSections
元素?
这是定义配置节和组的主要配置区域。我正在仔细阅读System.Configuration.ConfigurationSection inheritance的MSDN文档,但没有任何内容突然出现。
System.Configuration.ConfigurationManager
类似乎只访问该文件的已解析版本,并且它似乎不提供对configuration/configSections
本身的直接访问。
我不介意我是否必须使用XML类解析配置,但如果庞大的FCL还没有这个任务的帮助程序,我会感到惊讶。
configSections部分的示例(请参阅我的评论):
<?xml version="1.0"?>
<configuration>
<!-- This element is what I want to directly access programmatically -->
<configSections>
<section name="dotless" type="dotless.Core.configuration.DotlessConfigurationSectionHandler,dotless.Core" />
<section name="zforms" type="ZForms.Config.ZFormsSection, ZFormsLib"/>
</configSections>
<!-- I don't care about this -->
<zforms default="form2">
<add name="form1" title="Reading" />
<add name="form2" title="Assignment" />
</zforms>