TransferManagerCopyAsync Method (CloudBlob, CloudBlob, Boolean) |
Note: This API is now obsolete.
Copy content, properties and metadata of one Azure blob 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 [ObsoleteAttribute("Replaced by overload that takes CopyMethod", false)]
public static Task CopyAsync(
CloudBlob sourceBlob,
CloudBlob destBlob,
bool isServiceCopy
)
<ObsoleteAttribute("Replaced by overload that takes CopyMethod", false)>
Public Shared Function CopyAsync (
sourceBlob As CloudBlob,
destBlob As CloudBlob,
isServiceCopy As Boolean
) As Task
public:
[ObsoleteAttribute(L"Replaced by overload that takes CopyMethod", false)]
static Task^ CopyAsync(
CloudBlob^ sourceBlob,
CloudBlob^ destBlob,
bool isServiceCopy
)
[<ObsoleteAttribute("Replaced by overload that takes CopyMethod", false)>]
static member CopyAsync :
sourceBlob : CloudBlob *
destBlob : CloudBlob *
isServiceCopy : bool -> Task
Parameters
- sourceBlob
- Type: CloudBlob
The CloudBlob that is the source Azure blob. - destBlob
- Type: CloudBlob
The CloudBlob that is the destination Azure blob. - isServiceCopy
- Type: SystemBoolean
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:
TaskA
Task object that represents the asynchronous operation.
See Also