如何通过“附件”的动态设置获取Azure Blob存储?

时间:2019-07-26 07:45:38

标签: attachment inappbrowser azure-blob-storage

我将文件上传到具有以下ContentDisposition的Azure blob存储中:

blob.Properties.ContentDisposition = string.Format("attachment; filename=\"Testing\";");

但是,由于我想在平板电脑/手机中支持应用程序内浏览,我如何才能用C#代码动态地获取纯文件/附件中的文件? 例如,我添加了以下代码,但是稍后单击下载按钮时,它会显示图片(这是便携式设备中的预期行为),但不会自动下载:

blob.CreateOrReplace();
blob.Properties.ContentType = "text/plain";   
blob.Properties.ContentDisposition = "attachment; filename=" + Path.GetFileName(blobName);
blob.SetProperties(); // !!!

0 个答案:

没有答案