Programmatically get Azure storage account properties
I wrote in my C# web application a method that deletes old blobs from Azure storage account. This is my code: public void CleanupIotHubExpiredBlobs() { const string StorageAccountName = "storageName"; const string StorageAccountKey = "XXXXXXXXXX"; const string StorageContainerName = "outputblob"; string storageConnectionString = string.Format("DefaultEndpointsProtocol=https;AccountName={0};AccountKey={1}", StorageAccountName, StorageAccountKey); // Retrieve storage account from connection string. CloudStorageAccount storageAccount = CloudStorageAccount.Parse(storageConnectionString); // Create