标签: c# azure cloud azure-storage-blobs
我正在使用Azure Blob存储上载文件。 我正在尝试使用 WebClient :
using (WebClient client = new WebClient()) { client.Proxy = null; client.DownloadFile(url, fileNameAndPath); }
我的问题是:Azure仅允许一个连接下载,而且速度非常慢。有没有一种方法可以允许多个连接在Azure Blob中下载?