本文整理匯總了C#中Microsoft.WindowsAzure.Storage.Blob.CloudBlob.DownloadToStreamAsync方法的典型用法代碼示例。如果您正苦於以下問題:C# CloudBlob.DownloadToStreamAsync方法的具體用法?C# CloudBlob.DownloadToStreamAsync怎麽用?C# CloudBlob.DownloadToStreamAsync使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Microsoft.WindowsAzure.Storage.Blob.CloudBlob
的用法示例。
在下文中一共展示了CloudBlob.DownloadToStreamAsync方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: DownloadTextAsync
public static async Task<string> DownloadTextAsync(CloudBlob blob, Encoding encoding, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null)
{
using (MemoryStream stream = new MemoryStream())
{
await blob.DownloadToStreamAsync(stream, accessCondition, options, operationContext);
byte[] buffer = stream.ToArray();
return encoding.GetString(buffer, 0, buffer.Length);
}
}
示例2: DownloadTextTask
public static string DownloadTextTask(CloudBlob blob, Encoding encoding, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null)
{
using (MemoryStream stream = new MemoryStream())
{
try
{
blob.DownloadToStreamAsync(stream, accessCondition, options, operationContext).Wait();
}
catch (AggregateException ex)
{
if (ex.InnerException != null)
{
throw ex.InnerException;
}
throw;
}
return encoding.GetString(stream.ToArray());
}
}
示例3: AddBlobToQueue
private void AddBlobToQueue(CloudBlob blob, BlockingCollection<Func<MemoryStream, Task<CloudBlob>>> queue, List<CloudBlob> sequentialBlobs, int maxParallelSize)
{
if (blob.Properties.Length < maxParallelSize)
{
Log($"Queueing `{GetEntryName(blob)}` for parallel transfer", 3);
queue.Add(async (buffer) =>
{
Log($"Begin buffering {blob.Properties.Length} bytes of `{GetEntryName(blob)}`", 3);
await blob.DownloadToStreamAsync(buffer);
Log($"Finished buffering {blob.Properties.Length} bytes of `{GetEntryName(blob)}`", 2);
return blob;
});
}
else
{
Log($"Queueing `{GetEntryName(blob)}` for sequential transfer", 3);
sequentialBlobs.Add(blob);
}
}
示例4: CopyToArchiveStreamAsync
protected override Task CopyToArchiveStreamAsync(CloudBlob blob)
{
return blob.DownloadToStreamAsync(ArchiveStream);
}