TransferManagerDownloadAsync Method (CloudBlob, String) |
Download an Azure blob from Azure Blob Storage.
Namespace:
Microsoft.Azure.Storage.DataMovement
Assembly:
Microsoft.Azure.Storage.DataMovement (in Microsoft.Azure.Storage.DataMovement.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax public static Task DownloadAsync(
CloudBlob sourceBlob,
string destPath
)
Public Shared Function DownloadAsync (
sourceBlob As CloudBlob,
destPath As String
) As Task
public:
static Task^ DownloadAsync(
CloudBlob^ sourceBlob,
String^ destPath
)
static member DownloadAsync :
sourceBlob : CloudBlob *
destPath : string -> Task
Parameters
- sourceBlob
- Type: CloudBlob
The CloudBlob that is the source Azure blob. - destPath
- Type: SystemString
Path to the destination file.
Return Value
Type:
TaskA
Task object that represents the asynchronous operation.
See Also