解决方法
两个选项真的…第一个是直接将用户重定向到blob(如果blob在公共容器中)。看起来有点像:
return Redirect(container.GetBlobReference(name).Uri.AbsoluteUri);
如果blob位于私有容器中,则可以像上一个示例一样使用共享访问签名和重定向,也可以读取控制器操作中的blob并将其下载到客户端:
Response.AddHeader("Content-Disposition","attachment; filename=" + name); // force download container.GetBlobReference(name).DownloadToStream(Response.OutputStream); return new EmptyResult();