你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

BlobBaseClient.DownloadStreaming 方法

定义

DownloadStreaming(BlobDownloadOptions, CancellationToken) 操作从服务下载 Blob,包括其元数据和属性。

有关详细信息,请参阅 获取 Blob

public virtual Azure.Response<Azure.Storage.Blobs.Models.BlobDownloadStreamingResult> DownloadStreaming (Azure.Storage.Blobs.Models.BlobDownloadOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member DownloadStreaming : Azure.Storage.Blobs.Models.BlobDownloadOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.BlobDownloadStreamingResult>
override this.DownloadStreaming : Azure.Storage.Blobs.Models.BlobDownloadOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Blobs.Models.BlobDownloadStreamingResult>
Public Overridable Function DownloadStreaming (Optional options As BlobDownloadOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of BlobDownloadStreamingResult)

参数

options
BlobDownloadOptions

可选参数。

cancellationToken
CancellationToken

可选 CancellationToken ,用于传播应取消操作的通知。

返回

描述 Response<T> 下载的 Blob 的 。 Content 包含 Blob 的数据。

注解

RequestFailedException如果发生故障,将引发 。

此 API 允许直接访问应在使用后释放的网络流。 请考虑以下替代方法:

  • DownloadContentAsync 是下载可放入内存的小型 Blob 的首选方法
  • DownloadToAsyncto 将 blob 内容流式传输到路径或 Stream

适用于