gpt4 book ai didi

asp.net - 如何获取 web.config appSettings 作为 ConfigurationSection 而不是 NameValueCollection

转载 作者:行者123 更新时间:2023-12-03 03:28:45 25 4
gpt4 key购买 nike

ConfigurationManager.AppSettings 属性返回一个 NameValueCollection 对象,其中包含当前应用程序默认配置的 AppSettingsSection 对象的内容。

但我需要 AppSettingsSection 对象,因为我需要在运行时更改它的 configSource 属性

最佳答案

var configuration = WebConfigurationManager.OpenWebConfiguration("~");
var appSettingsSection = (AppSettingsSection)configuration.GetSection("appSettings");

关于asp.net - 如何获取 web.config appSettings 作为 ConfigurationSection 而不是 NameValueCollection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11117560/

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