CloudBlob.StartCopyFromBlob Method (Uri, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext)

 

Note: This API is now obsolete.

Begins an 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 StartCopy.")]
public string StartCopyFromBlob(
    Uri source,
    AccessCondition sourceAccessCondition = null,
    AccessCondition destAccessCondition = null,
    BlobRequestOptions options = null,
    OperationContext operationContext = null
)
<DoesServiceRequestAttribute>
<ObsoleteAttribute("Deprecated this method in favor of StartCopy.")>
Public Function StartCopyFromBlob (
    source As Uri,
    sourceAccessCondition As AccessCondition,
    destAccessCondition As AccessCondition,
    options As BlobRequestOptions,
    operationContext As OperationContext
) As String

Parameters

Return Value

Type: System.String

The copy ID associated with the copy operation.

Remarks

This method fetches the blob'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.

See Also

CloudBlob Class
Microsoft.WindowsAzure.Storage.Blob Namespace

Return to top