Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

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

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

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task<string> StartCopyAsync(
	Uri source
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<String^>^ StartCopyAsync(
	Uri^ source
)
 
[<DoesServiceRequestAttribute>]
abstract StartCopyAsync : 
        source:Uri -> Task<string>
[<DoesServiceRequestAttribute>]
override StartCopyAsync : 
        source:Uri -> Task<string>
 
<DoesServiceRequestAttribute>
Public Overridable Function StartCopyAsync (
	source As Uri
) As Task(OfString)

Parameters

source
Type: System.UriSystem::Uri^System.UriSystem.Uri

The Uri of the source blob or file.

Return to top