예제 #1
0
 private IEnumerable<IListBlobItem> GetBlobsStartingWith(string prefix, CloudBlobContainer container, bool exactMatch)
 {
     return (from b in container.CachedListBlobs()
             where BlobAtPath(System.Web.HttpUtility.UrlDecode(b.Uri.ToBlobPath()), prefix, exactMatch)
             select b);
 }