Azure.Storage.Files.DataLake.Models.FileDownloadInfo
The properties and content returned from downloading a file.
namespace Azure.Storage.Files.DataLake.Models
{
public class FileDownloadInfo
{
public long ContentLength { get; }
public Stream Content { get; }
public byte[] ContentHash { get; }
public FileDownloadDetails Properties { get; }
}
}