CloudPageBlob.BeginStartCopyFromBlob Method (CloudPageBlob, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)
Note: This API is now obsolete.
Begins an asynchronous operation to start copying another page blob's contents, properties, and metadata to this page 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(
CloudPageBlob source,
AccessCondition sourceAccessCondition,
AccessCondition destAccessCondition,
BlobRequestOptions options,
OperationContext operationContext,
AsyncCallback callback,
object state
)
<DoesServiceRequestAttribute>
<ObsoleteAttribute("Deprecated this method in favor of BeginStartCopy.")>
Public Function BeginStartCopyFromBlob (
source As CloudPageBlob,
sourceAccessCondition As AccessCondition,
destAccessCondition As AccessCondition,
options As BlobRequestOptions,
operationContext As OperationContext,
callback As AsyncCallback,
state As Object
) As ICancellableAsyncResult
Parameters
source
Type: Microsoft.WindowsAzure.Storage.Blob.CloudPageBlobThe CloudPageBlob that is the source blob.
sourceAccessCondition
Type: Microsoft.WindowsAzure.Storage.AccessConditionAn AccessCondition object that represents the access conditions for the source blob. If null, no condition is used.
destAccessCondition
Type: Microsoft.WindowsAzure.Storage.AccessConditionAn AccessCondition object that represents the access conditions for the destination blob. If null, no condition is used.
options
Type: Microsoft.WindowsAzure.Storage.Blob.BlobRequestOptionsA BlobRequestOptions object that specifies additional options for the request.
operationContext
Type: Microsoft.WindowsAzure.Storage.OperationContextAn OperationContext object that represents the context for the current operation.
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
CloudPageBlob Class
Microsoft.WindowsAzure.Storage.Blob Namespace
Return to top