in reference-implementations/semantic-search-for-images/src/ingestion/Services/BlobService.cs [48:57]
public async Task DownloadImageCsvBlob(string blobName, MemoryStream memoryStream)
{
_logger.LogInformation($"Downloading blob: {blobName}");
var blobClient = _imageCSVContainerClient.GetBlobClient(blobName);
await blobClient.DownloadToAsync(memoryStream);
memoryStream.Position = 0;
_logger.LogInformation($"Downloaded blob: {blobName}");
}