Qianshi's Blog
61 字
1 分钟
Asp.Net Core Download big file error issue
2022-06-13

问题描述:#

使用HttpClient下载文件抛出异常:Cannot write more bytes to the buffer than the configured maximum buffer size: 2147483647.

解决方式:#

在GetAsync方法第二个参数加上 HttpCompletionOption.ResponseHeadersRead (获取到响应头就返回) var response = await client.GetAsync(url, HttpCompletionOption.ResponseHeadersRead)

Asp.Net Core Download big file error issue
https://kuriyama.top/posts/dotnet/asp-net-core-download-big-file-error-issue/
作者
Qian Shi
发布于
2022-06-13
许可协议
CC BY-NC-SA 4.0