gpt4 book ai didi

azure - 在 Azure 辅助角色启动时更新 app.config

转载 作者:行者123 更新时间:2023-12-03 06:01:38 24 4
gpt4 key购买 nike

当 Azure 辅助角色启动时,我需要使用动态值更新其 app.config 中的值之一。

我尝试过:

var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["sampleName"].Value = "sampleValue";
config.Save(ConfigurationSaveMode.Minimal);
ConfigurationManager.RefreshSection("appSettings");

但它在启动期间抛出 UnauthorizedException。有推荐的方法吗?

最佳答案

如果该代码位于您的 OnStart 方法中,那么更新 app.config 就为时已晚,因为该进程已经在运行。您需要从启动任务中执行此操作。 http://blogs.msdn.com/b/cie/archive/2013/11/14/enable-server-gc-mode-for-your-worker-role.aspx 有一个使用 Powershell 的示例.

关于azure - 在 Azure 辅助角色启动时更新 app.config,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28218238/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com