I have the following code to return a list of containers using the WindowsAzure.Storage nuget package: public static class AzureBlobStorageClient { public static CloudBlobClient GetClient(string AccountName = “foo”, string AccountKey = “bar” ) { try { var connectionString = $ “DefaultEndpointsProtocol=https;AccountName={AccountName};AccountKey={AccountKey};EndpointSuffix=core.windows.net”; CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString); CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); IRetryPolicy exponentialRetryPolicy = new ExponentialRetry(TimeSpan.FromSeconds(2), 10);Read more