IBlobProvider.DownloadToAsync Method
- Namespace:
- Weavy.Core.Providers
- Assembly:
- Weavy.Core.dll
Overloads
Download |
Downloads the blob to a destination. |
Download |
Downloads a range of bytes from the blob to a destination. |
DownloadToAsync(Blob, Stream)
Downloads the blob to a destination.
Task DownloadToAsync(Blob blob, Stream destination)
Parameters
- destination
- System.IO.Stream
A System.IO.Stream
to write the downloaded content to.
Returns
System.Threading.Tasks.Task
DownloadToAsync(Blob, Stream, long, long)
Downloads a range of bytes from the blob to a destination.
Task DownloadToAsync(Blob blob, Stream destination, long offset, long length)
Parameters
- destination
- System.IO.Stream
A System.IO.Stream
to write the downloaded content to.
- offset
- long
The zero-based byte offset at which to start downloading.
- length
- long
The number of bytes to download.
Returns
System.Threading.Tasks.Task