Пример #1
0
 public async Task DeleteBlobsByPrefixAsync(string container, string prefix)
 => await WrapAsync(async() => await _impl.DeleteBlobsByPrefixAsync(container, prefix), container);
Пример #2
0
 public async Task DeleteBlobsByPrefixAsync(string container, string prefix)
 => await _retryService.RetryAsync(async() => await _impl.DeleteBlobsByPrefixAsync(container, prefix), _onModificationsRetryCount);