I have a Universal Windows app.
I am trying to download all blobs from an azure container when the app starts. This is my code:
public MainPage() {
You need to enumerate the blobs in the container, with container.listBlobsSegmentedAsync(). The container reference doesn't just have a list of blobs automatically downloaded with it.
container.listBlobsSegmentedAsync()
For reference, see here.