The requirement is get all available BlockBlob that's name start with given prefix: I used API:
CloudBlobClient.ListBlobs(prefix: "test").OfType<CloudBlockBlob>.Select(b=> b.Name).ToList();
I wonder how this API work:
Thanks.
No need to worry, the Server will do the filter.