In my app i want all the blob of my container but in my code (as below) there is not Listblob() method in CloudBlobContainer variable container. Am i missing something?
var credentials = new StorageCredentials("xxx", "a37bijfRGGdgaVU+ITEIi0Cp1VrbzMM7Bc9PbMOw2FPAz9twgR+lbTzqGhBfHeJe7UfEp4CXtLxqY5Ek0/5zdg==");
var client = new CloudBlobClient(new Uri("https://xxx.blob.core.windows.net/"), credentials);
var container = client.GetContainerReference("publicimage");
//this container variable has not ListBlobs() method
foreach(IListBlobItem item in container.ListBlobsSegmentedAsync())
{
}