gpt4 book ai didi

c# - Azure 环境上的 ConfigurationManager

转载 作者:行者123 更新时间:2023-12-03 01:52:04 27 4
gpt4 key购买 nike

我使用下面的代码来读取配置。此代码在 global.asax Application_Start 方法中使用。

        var showAllMethodSetting = ConfigurationManager.AppSettings["ShowAllMethodsInSwaggerDocs"];
bool showAllMethods;
if (!bool.TryParse(showAllMethodSetting, out showAllMethods) || !showAllMethods)
{
... code ...
}

它在我的本地配置 (appSetting.config) 中运行良好,但当我将代码推送到 Azure 时。它不起作用。

条目 ShowAllMethodsInSwaggerDocs 在 Azure 面板中可见,具有正确的值(我在 *.csdef 和 *.cscfg 中添加节点),但未使用该值。为什么?也许我应该使用 ConfigurationManager 之外的其他类?

最佳答案

您需要使用nuget包Microsoft Azure Configuration Manager在门户和 web.config 中获取配置设置。

关于c# - Azure 环境上的 ConfigurationManager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34989656/

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