- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
在 Azure 网站中,我总是使用以下代码从配置的应用程序设置中获取一些值:
string property = WebConfigurationManager.AppSettings["property"];
就在几天前,我偶然发现了 CloudConfigurationManager,用它我可以像这样获取属性:
string property = CloudConfigurationManager.GetSetting("property");
虽然 CloudConfigurationManager 看起来更适合云使用,但我对 WebConfigurationManager 从未遇到过任何问题。
最佳答案
CloudConfigurationManager使我们能够读取配置文件,无论我们所处的环境如何。
因此,不要编写特定于环境的代码语句,例如,对于 web.config 文件:
WebConfigurationManager.AppSettings["MySetting"]
对于 ServiceConfiguration.cscfg 文件:
RoleEnvironment.GetConfigurationSettingValue("MySetting")
我们可以编写以下语句,该语句将从所有配置文件(即 app.config、web.config 和 ServiceConfiguration.cscfg)中读取值。
CloudConfigurationManager.GetSetting("MySetting")
关于c# - CloudConfigurationManager 与 WebConfigurationManager?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29655648/
我正在尝试编写一些单元测试来测试改变 web.config 运行时的代码。要加载 Web.config,需要使用 WebConfigurationManager.OpenWebConfiguratio
在 Azure 网站中,我总是使用以下代码从配置的应用程序设置中获取一些值: string property = WebConfigurationManager.AppSettings["proper
我有很多读取我的 Web 配置文件的请求 variable = WebConfigurationManager.AppSettings["BLAH"] WebConfigurationManager.
WebConfigurationManager 之间有什么区别?和 ConfigurationManager ? 我什么时候应该使用一个而不是另一个? 已更新 我刚刚查看了 WebConfigurat
我正在尝试组合一个小的辅助工具来加密 web.config 文件。 Linqpad 示例: var path = @"F:\project\"; var wcfm = new WebConfigura
我在带有 ASP.NET 网站的测试服务器上遇到了一些问题。我傻了,有了家默认网站的目录指向了错误的位置。当我尝试时: ConfigurationManager.ConnectionStrings["
我有一个 Web API 应用程序使用 .Net Core 2.1 创建。此 Web 应用程序中的 Controller 调用我也使用 .Net Core 2.1 开发的业务层类库。到目前为止一切顺利
我在我的 web.config 文件中定义了以下内容:- 但是我无法在我的分页参数中引用这个值,如下所示:- var servers = repository.AllFindServers(with
我有一个 ASP.NET Core 3.1 项目,它在同一解决方案中引用了 .NET 4.7.2 项目。它编译没有问题,但在运行时出现错误: Could not load type 'System.W
我是一名优秀的程序员,十分优秀!