有没有办法在代码中而不是在配置文件中设置配置运行时选项?

发布于 2024-11-18 21:36:15 字数 308 浏览 4 评论 0原文

我正在编写一个 .NET 应用程序,我想将 enforceFIPSPolicy 选项设置为 false,但我想在代码中而不是在配置文件(app.config 或 web.config)中执行此操作。这可能吗?

配置文件中应该是这样的:

<configuration>
    <runtime>
        <enforceFIPSPolicy enabled="false"/>
    </runtime>
</configuration>

I'm writing a .NET app and I want to set the enforceFIPSPolicy option to false, but I would like to do it in code rather than in the config file (app.config or web.config). Is this possible?

This is what it's supposed to look like in the config file:

<configuration>
    <runtime>
        <enforceFIPSPolicy enabled="false"/>
    </runtime>
</configuration>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

尛丟丟 2024-11-25 21:36:15

不会。web/app.config 在应用程序启动时加载一次。更改文件的值将无效

如果没有这样的 API 来在运行时更改值,恐怕您就没有选择了。

No. web/app.config is loaded once at the application startup. Changing values of the file will have no effect.

If there is no such API to change the value in runtime, you are out of options I am afraid.

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