嵌套配置节 app.config
我没有找到任何有关如何
<my.configuration>
<emailNotification>
<to value="[email protected]" />
<from value="[email protected]" />
<subject value="Subject" />
<smtpHost value="smtp.you.com" />
<triggers>
<add name="1" varAlias="Var1" lower="-200" upper="-150"/>
</triggers>
</emailNotification>
</my.configuration>
在我之前使用过 ConfigurationElementCollection 和 ConfigurationElement 的 app.config 中访问此类嵌套配置部分的示例。但我不知道上面的怎么办?
I don't find any examples of how to access such a nested configuration section in a app.config
<my.configuration>
<emailNotification>
<to value="[email protected]" />
<from value="[email protected]" />
<subject value="Subject" />
<smtpHost value="smtp.you.com" />
<triggers>
<add name="1" varAlias="Var1" lower="-200" upper="-150"/>
</triggers>
</emailNotification>
</my.configuration>
I used ConfigurationElementCollection and ConfigurationElement before. But I don't know how to do the above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要:
将
my.configuration
定义为部分组,将emailNotification
定义为组内的部分。将以下内容添加到配置文件:实现配置节组 (
my.configuration
)。实现配置部分 (
emailNotification
)。实现必要的配置元素和配置元素集合。
更新配置文件并实现必要的配置位后,您可以按如下方式访问您的部分:
You need to:
Define
my.configuration
as section group andemailNotification
as a section within the group. Add following to the configuration file:Implement the configuration section group (
my.configuration
).Implement the configuration section (
emailNotification
).Implement necessary configuration elements and configuration element collection.
After updating the configuration file and implementing necessary configuration bits, you can access you section as follows: