本文介绍了CloudConfigurationManager.GetSetting返回null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下说明我有:
VAR的connectionString = CloudConfigurationManager.GetSetting(StorageConnectionString);
但的connectionString
是空
,这里是我的app.config:
<?XML版本=1.0编码=UTF-8&GT?;
<结构>
<&启动GT;
< supportedRuntime版本=V4.0SKU =.net框架,版本= V4.5/>
< /启动>
<&是connectionStrings GT;
<添加名称=StorageConnectionString
的connectionString =DefaultEndpointsProtocol = https和帐户名=存储; AccountKey =键/>
< /&是connectionStrings GT;
<&运行GT;
< assemblyBinding的xmlns =瓮:架构 - 微软COM:asm.v1>
< dependentAssembly>
< assemblyIdentity名称=Microsoft.Data.OData公钥=31bf3856ad364e35文化=中性/>
< bindingRedirect oldVersion =0.0.0.0-5.2.0.0NEWVERSION =5.2.0.0/>
< / dependentAssembly>
< / assemblyBinding>
< /运行>
< /结构>
解决方案
好这个工程,即使意见不适合,因为我有一个裁判CloudConfigManager:
using System.Configuration;
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
ConfigurationManager.ConnectionStrings["StorageConnectionString"].ConnectionString);
这篇关于CloudConfigurationManager.GetSetting返回null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!