Azure Storage
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
3,538 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
WindowsAzure.Storage is being deprecated, so I'm switching to Azure.Storage.Blobs.
I can't seem to find a way of enumerating the storage containers using this library. Is it possible? If so, is there a sample I can reference online?
Thank you.
Found the solution.
BlobServiceClient client = new BlobServiceClient(connectionString);
var containers = client.GetBlobContainers();