private async Task GetBlobResultSegment(stringContainerName, string prefix)
{
CloudBlobClient cloudBlobClient = CloudStorageAccount .Parse(_blobDataConnectionString)
.CreateCloudBlobClient();
Код: Выделить всё
var cc = cloudBlobClient.GetContainerReference(containerName);
BlobResultSegment allBlobs = await cc.ListBlobsSegmentedAsync(prefix, default);
return allBlobs;
Подробнее здесь: https://stackoverflow.com/questions/782 ... blobclient