Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Ends 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

 
public virtual string EndStartCopy(
	IAsyncResult asyncResult
)
 
public:
virtual String^ EndStartCopy(
	IAsyncResult^ asyncResult
)
 
abstract EndStartCopy : 
        asyncResult:IAsyncResult -> string
override EndStartCopy : 
        asyncResult:IAsyncResult -> string
 
Public Overridable Function EndStartCopy (
	asyncResult As IAsyncResult
) As String

Parameters

asyncResult
Type: System.IAsyncResultSystem::IAsyncResult^System.IAsyncResultSystem.IAsyncResult

An IAsyncResult that references the pending asynchronous operation.

Return Value

Type: System.StringSystem::String^System.StringSystem.String

The copy ID associated with the copy operation.

Remarks

This method fetches the file's ETag, last-modified time, and part of the copy state. The copy ID and copy status fields are fetched, and the rest of the copy state is cleared.

Return to top