Azure存储连接字符串如何实现申请

时间:2018-09-21 11:59:20

标签: azure azure-devops azure-storage

我需要从应用程序创建对Azure存储的访问。应用程序需要存储,将文件放置在哪里。下面的这段代码,我试图放在应用程序需要存储文件路径的地方。我说的对吗?如何将其实现到Application XML中,然后它开始将文件写入云存储。

<connectionStrings>
    <add name= "DefaultConnection" connectionString="DefaultEndpointsProtocol=https;AccountName=;AccountKey=;/>
</connectionStrings>

2 个答案:

答案 0 :(得分:0)

例如,请看一下这个doc

在您的app.config中,请添加:

<appSettings>
        <add key="StorageConnectionString" value="DefaultEndpointsProtocol=https;AccountName=account-name;AccountKey=account-key" />
</appSettings>

在您的代码中,请使用:

// Parse the connection string and return a reference to the storage account.
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
    CloudConfigurationManager.GetSetting("StorageConnectionString"));

然后您就可以使用天蓝色存储了。

答案 1 :(得分:0)

如果您登录到Azure上的Blob映像存储。默认情况下,它应该填充连接字符串。 PFB参考

enter image description here