有没有办法在代码中而不是在配置文件中设置配置运行时选项?
我正在编写一个 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。
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.