public override bool BlobStreamExists(Guid blobId, CallContext context)
        {
            Assert.ArgumentNotNull(context, "context");

            if (!_externalBlobStorageProviderConfigured)
            {
                return(base.BlobStreamExists(blobId, context));
            }

            // Note: If blob stream not found from the external storage then fall-back to default one
            return(_blobStorageProvider.Exists(blobId.ToString()) ? true : base.BlobStreamExists(blobId, context));
        }
Esempio n. 2
0
 public bool Exists(string blobKey)
 {
     return(BlobStorageProvider.Exists(blobKey));
 }