外部 .config 的自定义配置部分

发布于 2024-11-02 05:33:03 字数 408 浏览 0 评论 0原文

我知道有一种简单的方法可以将任何“标准”配置部分移动到外部文件,即

<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 技术交流群。

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

发布评论

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

评论(1

ㄟ。诗瑗 2024-11-09 05:33:04

您可以使用

但与 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文