How to use DeleteAllBlobsAsync method of ImageGallery.Store.AzureStorage.BlobContainerProvider class

Best Coyote code snippet using ImageGallery.Store.AzureStorage.BlobContainerProvider.DeleteAllBlobsAsync

BlobContainerProvider.cs

Source:BlobContainerProvider.cs Github

copy

Full Screen

...67 var blobClient = new BlobClient(this.ConnectionString, containerName, blobName);68 var deleteInfo = await blobClient.DeleteIfExistsAsync();69 return deleteInfo.Value;70 }71 public async Task DeleteAllBlobsAsync(string containerName)72 {73 var blobContainerClient = new BlobContainerClient(this.ConnectionString, containerName);74 await blobContainerClient.DeleteAsync();75 await blobContainerClient.CreateIfNotExistsAsync();76 }77 public async Task<BlobPage> GetBlobListAsync(string containerName, string continuationId, int pageSize)78 {79 BlobPage page = new BlobPage();80 var blobContainerClient = new BlobContainerClient(this.ConnectionString, containerName);81 var pageable = blobContainerClient.GetBlobsAsync();82 await foreach(var item in pageable.AsPages(continuationId, pageSizeHint: pageSize))83 {84 List<string> names = new List<string>(item.Values.Select(b => b.Name));85 page.Names = names.ToArray();...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful