ContainerRegistryContentClient.DownloadBlobStreaming Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Downloads a blob from the registry.
public virtual Azure.Response<Azure.Containers.ContainerRegistry.DownloadRegistryBlobStreamingResult> DownloadBlobStreaming (string digest, System.Threading.CancellationToken cancellationToken = default);
abstract member DownloadBlobStreaming : string * System.Threading.CancellationToken -> Azure.Response<Azure.Containers.ContainerRegistry.DownloadRegistryBlobStreamingResult>
override this.DownloadBlobStreaming : string * System.Threading.CancellationToken -> Azure.Response<Azure.Containers.ContainerRegistry.DownloadRegistryBlobStreamingResult>
Public Overridable Function DownloadBlobStreaming (digest As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of DownloadRegistryBlobStreamingResult)
Parameters
- digest
- String
The digest of the blob to download.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
A Response<T> describing the downloaded blob. Content contains the blob's data.
Exceptions
If digest
is null.
Thrown when a failure is returned by the Container Registry service.
Remarks
This API gives access directly to network stream that should be disposed after usage. Consider the following alternatives:
- DownloadContent: as a prefered way of downloading small blobs that can fit into memory
- DownloadTo: to stream blob content to a path or a Stream
Applies to
Azure SDK for .NET