Код: Выделить всё
private static BlobContainerClient _chunk_storage_client;
foreach (Chunk chunk in targetFile.Chunks)
{
BlobClient chunkClient = _chunk_storage_client.GetBlobClient(chunk.Name);
BlobProperties props = chunkClient.GetProperties();
if (props.ContentHash.Length > 0)
{
chunk.Md5 = props.ContentHash.ToHex();
}
}
Подробнее здесь: https://stackoverflow.com/questions/796 ... y-one-call
Мобильная версия