Пожалуйста, посмотрите на этот документ , например.
В вашем 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"));
Тогда вы можете использовать лазурное хранилище.