public void BlobHasEtagAsync()
 {
     BlobStorage.PutBlob(ContainerName, BlobName, 1);
     Assert.IsNotNull(BlobStorage.GetBlobEtagAsync(ContainerName, BlobName).Result, "#A00");
 }
Esempio n. 2
0
 public static Task <string> GetBlobEtagAsync(this IBlobStorageProvider provider, string containerName, string blobName)
 {
     return(provider.GetBlobEtagAsync(containerName, blobName, CancellationToken.None));
 }