使用 HttpClient.PutAsync() 批量上传

本文关键字:HttpClient PutAsync 使用 | 更新日期: 2023-09-27 18:33:08

我正在尝试使用 HttpClient.PutAsync() 同时将多个图像上传到 Windows Azure 存储。代码片段如下所示:

Task<HttpResponseMessage> putThumbnail = httpclient.PutAsync(new Uri(ThumbnailSas), thumbcontent);
Task<HttpResponseMessage> putImage = httpclient.PutAsync(new Uri(ImageSas), imagecontent);
Task.WaitAll(new Task<HttpResponseMessage>[] {putThumbnail, putImage});

奇怪的是,以这种方式服务器根本不返回,因此Task.WaitAll将永远等待。

如果我使用 await 更改代码,服务器将返回,我可以正确获得结果。

HttpResponseMessage result = await httpclient.PutAsync(new Uri(ThumbnailSas), thumbcontent);

如何使用 HttpClient.PutAsync 批量上传图像?

使用 HttpClient.PutAsync() 批量上传

正如我在博客上描述的那样,你不应该阻止async代码。

在这种情况下,您可以使用Task.WhenAll

Task<HttpResponseMessage> putThumbnail = ...;
Task<HttpResponseMessage> putImage = ...;
await Task.WhenAll(putThumbnail, putImage);

另请参阅我的 MSDN 文章中有关async最佳做法的图 5 或我的 async 介绍博客文章的结尾。