CloudBlob.BeginStartCopyFromBlob Method (Uri, AsyncCallback, Object)
Note: This API is now obsolete.
Begins an asynchronous operation to start copying another blob's contents, properties, and metadata to this blob.
Namespace: Microsoft.WindowsAzure.Storage.Blob
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Syntax
[DoesServiceRequestAttribute]
[ObsoleteAttribute("Deprecated this method in favor of BeginStartCopy.")]
public ICancellableAsyncResult BeginStartCopyFromBlob(
Uri source,
AsyncCallback callback,
object state
)
<DoesServiceRequestAttribute>
<ObsoleteAttribute("Deprecated this method in favor of BeginStartCopy.")>
Public Function BeginStartCopyFromBlob (
source As Uri,
callback As AsyncCallback,
state As Object
) As ICancellableAsyncResult
Parameters
source
Type: System.UriThe Uri of the source blob.
callback
Type: System.AsyncCallbackAn AsyncCallback delegate that will receive notification when the asynchronous operation completes.
state
Type: System.ObjectA user-defined object that will be passed to the callback delegate.
Return Value
Type: Microsoft.WindowsAzure.Storage.ICancellableAsyncResult
An ICancellableAsyncResult that references the asynchronous operation.
See Also
BeginStartCopyFromBlob Overload
CloudBlob Class
Microsoft.WindowsAzure.Storage.Blob Namespace
Return to top