Share via


TransferManager.CopyAsync Method (Uri, CloudFile, Boolean, CopyOptions, SingleTransferContext)

 

Copy file from an specified URI to an Azure file.

Namespace:   Microsoft.WindowsAzure.Storage.DataMovement
Assembly:  Microsoft.WindowsAzure.Storage.DataMovement (in Microsoft.WindowsAzure.Storage.DataMovement.dll)

Syntax

public static Task CopyAsync(
    Uri sourceUri,
    CloudFile destFile,
    bool isServiceCopy,
    CopyOptions options,
    SingleTransferContext context
)

Parameters

  • isServiceCopy
    Type: System.Boolean

    A flag indicating whether the copy is service-side asynchronous copy or not. If this flag is set to true, service-side asychronous copy will be used; if this flag is set to false, file is downloaded from source first, then uploaded to destination.

Return Value

Type: System.Threading.Tasks.Task

A Task object that represents the asynchronous operation.

Remarks

Copying from an URI to Azure file synchronously is not supported yet.

See Also

CopyAsync Overload
TransferManager Class
Microsoft.WindowsAzure.Storage.DataMovement Namespace

Return to top