Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initiates an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.

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

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task<string> StartCopyAsync(
	CloudBlockBlob source,
	CancellationToken cancellationToken
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<String^>^ StartCopyAsync(
	CloudBlockBlob^ source,
	CancellationToken cancellationToken
)
 
[<DoesServiceRequestAttribute>]
abstract StartCopyAsync : 
        source:CloudBlockBlob *
        cancellationToken:CancellationToken -> Task<string>
[<DoesServiceRequestAttribute>]
override StartCopyAsync : 
        source:CloudBlockBlob *
        cancellationToken:CancellationToken -> Task<string>
 
<DoesServiceRequestAttribute>
Public Overridable Function StartCopyAsync (
	source As CloudBlockBlob,
	cancellationToken As CancellationToken
) As Task(OfString)
Return to top