外部 .config 的自定义配置部分
我知道有一种简单的方法可以将任何“标准”配置部分移动到外部文件,即
<appSettings file="myFile.config">
但是自定义 ConfigurationSection 怎么样?
<configSections>
<section name="someName" type="Namespace.SomeNameConfiguration" requirePermission="false" />
</configSections>
....
<someName>
< bla bla bla ......
</someName>
有类似的方法吗?
I know there is an easy way to move any "standard" config section to external file i.e.
<appSettings file="myFile.config">
but what about a custom ConfigurationSection?
<configSections>
<section name="someName" type="Namespace.SomeNameConfiguration" requirePermission="false" />
</configSections>
....
<someName>
< bla bla bla ......
</someName>
Is there any similar way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
但与
appSettings file=...
不同,您必须将整个部分放入外部文件中:没有合并。You can use
<somename configSource="myfile.config"/>
However unlike
appSettings file=...
, you must put the entire section in the external file: there is no merging.