如何从Azure表中检索缩略图网址?

时间:2010-09-19 06:29:54

标签: windows linq azure azure-storage

如何使用LINQ查询从Azure表中检索缩略图网址?

1 个答案:

答案 0 :(得分:0)

取决于您要完成的任务。如果您已生成缩略图,则可以从容器中访问它。只需使用DownloadByteArray。

var client = this.account.CreateCloudBlobClient();
client.RetryPolicy = RetryPolicies.Retry(3, TimeSpan.FromSeconds(5));
var container = client.GetContainerReference("containerName");
CloudBlob blob = this.container.GetBlobReference("id");
byte[] bytes = blob.DownloadByteArray();

如果要将uri保护到blob,也可以指定SharedAccessPolicy。如果您想了解更多相关信息,可以下载具有此方案的code for our book。我们正在努力在下个月将其升级到SDK 1.4。