Buffered download [Answered]

Hello,

For example I can download a file
var client = new HttpClient();
var result = await client.GetByteArrayAsync(url);


By doing that I write it all to memory. But what if the file is quite big (4gb+), how could I download in chunks while writing those to persistence?
Was this page helpful?