| TransferManagerCopyAsync Method (CloudFile, CloudFile, CopyMethod) | 
 
            Copy content, properties and metadata of an Azure file to another.
            
 
    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
Syntaxpublic static Task CopyAsync(
	CloudFile sourceFile,
	CloudFile destFile,
	CopyMethod copyMethod
)
Public Shared Function CopyAsync ( 
	sourceFile As CloudFile,
	destFile As CloudFile,
	copyMethod As CopyMethod
) As Task
public:
static Task^ CopyAsync(
	CloudFile^ sourceFile, 
	CloudFile^ destFile, 
	CopyMethod copyMethod
)
static member CopyAsync : 
        sourceFile : CloudFile * 
        destFile : CloudFile * 
        copyMethod : CopyMethod -> Task 
Parameters
- sourceFile
- Type: CloudFile
 The CloudFile that is the source Azure file.
- destFile
- Type: CloudFile
 The CloudFile that is the destination Azure file.
- copyMethod
- Type: Microsoft.Azure.Storage.DataMovementCopyMethod
 A flag indicating how the copying operation is handled in DataMovement Library.
            See definition of CopyMethod for more details on how copying operation will be handled.
Return Value
Type: 
TaskA 
Task object that represents the asynchronous operation.
 See Also
See Also