BlobDownloadStreamingResult
The details and Content returned from downloading a blob.
            
                using Azure.Storage.Shared;
using System;
using System.IO;
namespace Azure.Storage.Blobs.Models
{
    public class BlobDownloadStreamingResult : IDisposable, IDownloadedContent
    {
        public BlobDownloadDetails Details { get; set; }
        public Stream Content { get; set; }
        internal BlobDownloadStreamingResult()
        {
        }
        public void Dispose()
        {
            Content?.Dispose();
            GC.SuppressFinalize(this);
        }
    }
}