CloudAppendBlob Class

Definition

Represents an append blob, a type of blob where blocks of data are always committed to the end of the blob.

public class CloudAppendBlob : Microsoft.Azure.Storage.Blob.CloudBlob, Microsoft.Azure.Storage.Blob.ICloudBlob
type CloudAppendBlob = class
    inherit CloudBlob
    interface ICloudBlob
    interface IListBlobItem
Public Class CloudAppendBlob
Inherits CloudBlob
Implements ICloudBlob
Inheritance
CloudAppendBlob
Implements

Constructors

CloudAppendBlob(StorageUri, Nullable<DateTimeOffset>, CloudBlobClient)

Initializes a new instance of the CloudAppendBlob class using an absolute URI to the blob.

CloudAppendBlob(StorageUri, Nullable<DateTimeOffset>, StorageCredentials)

Initializes a new instance of the CloudAppendBlob class using an absolute URI to the blob.

CloudAppendBlob(Uri)

Initializes a new instance of the CloudAppendBlob class using an absolute URI to the blob.

CloudAppendBlob(Uri, CloudBlobClient)

Initializes a new instance of the CloudAppendBlob class using an absolute URI to the blob.

CloudAppendBlob(Uri, Nullable<DateTimeOffset>, CloudBlobClient)

Initializes a new instance of the CloudAppendBlob class using an absolute URI to the blob.

CloudAppendBlob(Uri, Nullable<DateTimeOffset>, StorageCredentials)

Initializes a new instance of the CloudAppendBlob class using an absolute URI to the blob.

CloudAppendBlob(Uri, StorageCredentials)

Initializes a new instance of the CloudAppendBlob class using an absolute URI to the blob.

Properties

BlobType

Gets the type of the blob.

(Inherited from CloudBlob)
Container

Gets a CloudBlobContainer object representing the blob's container.

(Inherited from CloudBlob)
CopyState

Gets the state of the most recent or pending copy operation.

(Inherited from CloudBlob)
IsDeleted

Gets a value indicating whether or not this blob has been deleted.

(Inherited from CloudBlob)
IsSnapshot

Gets a value indicating whether this blob is a snapshot.

(Inherited from CloudBlob)
Metadata

Gets the user-defined metadata for the blob.

(Inherited from CloudBlob)
Name

Gets the name of the blob.

(Inherited from CloudBlob)
Parent

Gets the CloudBlobDirectory object representing the virtual parent directory for the blob.

(Inherited from CloudBlob)
Properties

Gets the blob's system properties.

(Inherited from CloudBlob)
ServiceClient

Gets the CloudBlobClient object that represents the Blob service.

(Inherited from CloudBlob)
SnapshotQualifiedStorageUri

Gets the blob's URI for both the primary and secondary locations, including query string information if the blob is a snapshot.

(Inherited from CloudBlob)
SnapshotQualifiedUri

Gets the absolute URI to the blob, including query string information if the blob is a snapshot.

(Inherited from CloudBlob)
SnapshotTime

Gets the date and time that the blob snapshot was taken, if this blob is a snapshot.

(Inherited from CloudBlob)
StorageUri

Gets the blob's URIs for both the primary and secondary locations.

(Inherited from CloudBlob)
StreamMinimumReadSizeInBytes

Gets or sets the minimum number of bytes to buffer when reading from a blob stream.

(Inherited from CloudBlob)
StreamWriteSizeInBytes

Gets or sets the number of bytes to buffer when writing to an append blob stream.

Uri

Gets the blob's URI for the primary location.

(Inherited from CloudBlob)

Methods

AbortCopy(String, AccessCondition, BlobRequestOptions, OperationContext)

Aborts an ongoing blob copy operation.

(Inherited from CloudBlob)
AbortCopyAsync(String)

Initiates an asynchronous operation to abort an ongoing blob copy operation.

(Inherited from CloudBlob)
AbortCopyAsync(String, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to abort an ongoing blob copy operation.

(Inherited from CloudBlob)
AbortCopyAsync(String, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to abort an ongoing blob copy operation.

(Inherited from CloudBlob)
AbortCopyAsync(String, CancellationToken)

Initiates an asynchronous operation to abort an ongoing blob copy operation.

(Inherited from CloudBlob)
AcquireLease(Nullable<TimeSpan>, String, AccessCondition, BlobRequestOptions, OperationContext)

Acquires a lease on this blob.

(Inherited from CloudBlob)
AcquireLeaseAsync(Nullable<TimeSpan>, String)

Initiates an asynchronous operation to acquire a lease on this blob.

(Inherited from CloudBlob)
AcquireLeaseAsync(Nullable<TimeSpan>, String, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to acquire a lease on this blob.

(Inherited from CloudBlob)
AcquireLeaseAsync(Nullable<TimeSpan>, String, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to acquire a lease on this blob.

(Inherited from CloudBlob)
AcquireLeaseAsync(Nullable<TimeSpan>, String, CancellationToken)

Initiates an asynchronous operation to acquire a lease on this blob.

(Inherited from CloudBlob)
AppendBlock(Stream, Checksum, AccessCondition, BlobRequestOptions, OperationContext)

Commits a new block of data to the end of the blob.

AppendBlock(Uri, Int64, Int64, Checksum, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext)

Commits a new block of data to the end of the blob.

AppendBlockAsync(Stream, String)

Initiates an asynchronous operation to commit a new block of data to the end of the blob.

AppendBlockAsync(Stream, String, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to commit a new block of data to the end of the blob.

AppendBlockAsync(Stream, String, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to commit a new block of data to the end of the blob.

AppendBlockAsync(Stream, String, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to commit a new block of data to the end of the blob.

AppendBlockAsync(Stream, String, CancellationToken)

Initiates an asynchronous operation to commit a new block of data to the end of the blob.

AppendBlockAsync(Uri, Int64, Int64, String, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Commits a new block of data to the end of the blob.

AppendFromByteArray(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext)

Appends the contents of a byte array to an append blob.Recommended only for single-writer scenarios.

AppendFromByteArrayAsync(Byte[], Int32, Int32)

Initiates an asynchronous operation to append the contents of a byte array to an append blob. Recommended only for single-writer scenarios.

AppendFromByteArrayAsync(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to append the contents of a byte array to an append blob.This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

AppendFromByteArrayAsync(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to upload the contents of a byte array to an append blob.This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

AppendFromByteArrayAsync(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to upload the contents of a byte array to an append blob.This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

AppendFromByteArrayAsync(Byte[], Int32, Int32, CancellationToken)

Initiates an asynchronous operation to append the contents of a byte array to an append blob. Recommended only for single-writer scenarios.

AppendFromFile(String, AccessCondition, BlobRequestOptions, OperationContext)

Appends a file to an append blob. Recommended only for single-writer scenarios.

AppendFromFileAsync(String)

Initiates an asynchronous operation to append a file to an append blob. Recommended only for single-writer scenarios.

AppendFromFileAsync(String, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to append a file to an append blob. Recommended only for single-writer scenarios.

AppendFromFileAsync(String, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to append a file to an append blob. Recommended only for single-writer scenarios.

AppendFromFileAsync(String, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to append a file to an append blob. Recommended only for single-writer scenarios.

AppendFromFileAsync(String, CancellationToken)

Initiates an asynchronous operation to append a file to an append blob. Recommended only for single-writer scenarios.

AppendFromStream(Stream, AccessCondition, BlobRequestOptions, OperationContext)

Appends a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStream(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext)

Appends a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStreamAsync(Stream)

Initiates an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStreamAsync(Stream, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStreamAsync(Stream, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStreamAsync(Stream, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStreamAsync(Stream, CancellationToken)

Initiates an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStreamAsync(Stream, Int64)

Initiates an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStreamAsync(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStreamAsync(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStreamAsync(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

AppendFromStreamAsync(Stream, Int64, CancellationToken)

Initiates an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

AppendText(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext)

Appends a string of text to an append blob. This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

AppendTextAsync(String)

Initiates an asynchronous operation to append a string of text to an append blob. This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

AppendTextAsync(String, CancellationToken)

Initiates an asynchronous operation to append a string of text to an append blob. This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

AppendTextAsync(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to append a string of text to an append blob. This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

AppendTextAsync(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to append a string of text to an append blob. This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

AppendTextAsync(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to append a string of text to an append blob. This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

BeginAbortCopy(String, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to abort an ongoing blob copy operation.

(Inherited from CloudBlob)
BeginAbortCopy(String, AsyncCallback, Object)

Begins an asynchronous operation to abort an ongoing blob copy operation.

(Inherited from CloudBlob)
BeginAcquireLease(Nullable<TimeSpan>, String, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to acquire a lease on this blob.

(Inherited from CloudBlob)
BeginAcquireLease(Nullable<TimeSpan>, String, AsyncCallback, Object)

Begins an asynchronous operation to acquire a lease on this blob.

(Inherited from CloudBlob)
BeginAppendBlock(Stream, AsyncCallback, Object)

Begins an asynchronous operation to commit a new block of data to the end of the blob.

BeginAppendBlock(Stream, Checksum, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to commit a new block of data to the end of the blob.

BeginAppendBlock(Stream, Checksum, AsyncCallback, Object)

Begins an asynchronous operation to commit a new block of data to the end of the blob.

BeginAppendBlock(Uri, Int64, Int64, Checksum, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Commits a new block of data to the end of the blob.

BeginAppendFromByteArray(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to append the contents of a byte array to an append blob. Recommended only for single-writer scenarios.

BeginAppendFromByteArray(Byte[], Int32, Int32, AsyncCallback, Object)

Begins an asynchronous operation to append the contents of a byte array to an append blob. Recommended only for single-writer scenarios.

BeginAppendFromFile(String, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to append a file to an append blob. Recommended only for single-writer scenarios.

BeginAppendFromFile(String, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, AsyncCallback, Object)

Begins an asynchronous operation to append a file to an append blob. Recommended only for single-writer scenarios.

BeginAppendFromFile(String, AsyncCallback, Object)

Begins an asynchronous operation to append a file to an append blob. Recommended only for single-writer scenarios.

BeginAppendFromStream(Stream, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

BeginAppendFromStream(Stream, AsyncCallback, Object)

Begins an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

BeginAppendFromStream(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

BeginAppendFromStream(Stream, Int64, AsyncCallback, Object)

Begins an asynchronous operation to append a stream to an append blob. Recommended only for single-writer scenarios.

BeginAppendText(String, AsyncCallback, Object)

Begins an asynchronous operation to append a string of text to an append blob. This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

BeginAppendText(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to append a string of text to an append blob. This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

BeginBreakLease(Nullable<TimeSpan>, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to break the current lease on this blob.

(Inherited from CloudBlob)
BeginBreakLease(Nullable<TimeSpan>, AsyncCallback, Object)

Begins an asynchronous operation to break the current lease on this blob.

(Inherited from CloudBlob)
BeginChangeLease(String, AccessCondition, AsyncCallback, Object)

Begins an asynchronous operation to change the lease on this blob.

(Inherited from CloudBlob)
BeginChangeLease(String, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to change the lease on this blob.

(Inherited from CloudBlob)
BeginCreateOrReplace(AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to create an empty append blob. If the blob already exists, this operation will overwrite it. To throw an exception if the blob exists, instead of overwriting, pass in an AccessCondition object generated using GenerateIfNotExistsCondition().

BeginCreateOrReplace(AsyncCallback, Object)

Begins an asynchronous operation to create an empty append blob. If the blob already exists, this operation will overwrite it. To throw an exception if the blob exists, instead of overwriting, use BeginCreateOrReplace(AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object).

BeginCreateSnapshot(AsyncCallback, Object)

Begins an asynchronous operation to create a snapshot of the blob.

BeginCreateSnapshot(IDictionary<String,String>, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to create a snapshot of the blob.

BeginDelete(AsyncCallback, Object)

Begins an asynchronous operation to delete the blob.

(Inherited from CloudBlob)
BeginDelete(DeleteSnapshotsOption, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to delete the blob.

(Inherited from CloudBlob)
BeginDeleteIfExists(AsyncCallback, Object)

Begins an asynchronous request to delete the blob if it already exists.

(Inherited from CloudBlob)
BeginDeleteIfExists(DeleteSnapshotsOption, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous request to delete the blob if it already exists.

(Inherited from CloudBlob)
BeginDownloadRangeToByteArray(Byte[], Int32, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to download a range of bytes from a blob to a byte array.

(Inherited from CloudBlob)
BeginDownloadRangeToByteArray(Byte[], Int32, Nullable<Int64>, Nullable<Int64>, AsyncCallback, Object)

Begins an asynchronous operation to download a range of bytes from a blob to a byte array.

(Inherited from CloudBlob)
BeginDownloadRangeToStream(Stream, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to download a range of bytes from a blob to a stream.

(Inherited from CloudBlob)
BeginDownloadRangeToStream(Stream, Nullable<Int64>, Nullable<Int64>, AsyncCallback, Object)

Begins an asynchronous operation to download a range of bytes from a blob to a stream.

(Inherited from CloudBlob)
BeginDownloadText(AsyncCallback, Object)

Begins an asynchronous operation to download the blob's contents as a string.

BeginDownloadText(Encoding, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to download the blob's contents as a string.

BeginDownloadToByteArray(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to download the contents of a blob to a byte array.

(Inherited from CloudBlob)
BeginDownloadToByteArray(Byte[], Int32, AsyncCallback, Object)

Begins an asynchronous operation to download the contents of a blob to a byte array.

(Inherited from CloudBlob)
BeginDownloadToFile(String, FileMode, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to download the contents of a blob to a file.

(Inherited from CloudBlob)
BeginDownloadToFile(String, FileMode, AsyncCallback, Object)

Begins an asynchronous operation to download the contents of a blob to a file.

(Inherited from CloudBlob)
BeginDownloadToStream(Stream, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to download the contents of a blob to a stream.

(Inherited from CloudBlob)
BeginDownloadToStream(Stream, AsyncCallback, Object)

Begins an asynchronous operation to download the contents of a blob to a stream.

(Inherited from CloudBlob)
BeginExists(AsyncCallback, Object)

Begins an asynchronous request to check existence of the blob.

(Inherited from CloudBlob)
BeginExists(BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous request to check existence of the blob.

(Inherited from CloudBlob)
BeginFetchAttributes(AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to populate the blob's properties and metadata.

(Inherited from CloudBlob)
BeginFetchAttributes(AsyncCallback, Object)

Begins an asynchronous operation to populate the blob's properties and metadata.

(Inherited from CloudBlob)
BeginGetAccountProperties(AsyncCallback, Object)

Begins an asynchronous operation to get properties for the account this blob resides on.

(Inherited from CloudBlob)
BeginGetAccountProperties(BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to get properties for the account this blob resides on.

(Inherited from CloudBlob)
BeginOpenRead(AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to open a stream for reading from the blob.

(Inherited from CloudBlob)
BeginOpenRead(AsyncCallback, Object)

Begins an asynchronous operation to open a stream for reading from the blob.

(Inherited from CloudBlob)
BeginOpenWrite(Boolean, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to open a stream for writing to the blob.

BeginOpenWrite(Boolean, AsyncCallback, Object)

Begins an asynchronous operation to open a stream for writing to the blob.

BeginReleaseLease(AccessCondition, AsyncCallback, Object)

Begins an asynchronous operation to release the lease on this blob.

(Inherited from CloudBlob)
BeginReleaseLease(AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to release the lease on this blob.

(Inherited from CloudBlob)
BeginRenewLease(AccessCondition, AsyncCallback, Object)

Begins an asynchronous operation to renew a lease on this blob.

(Inherited from CloudBlob)
BeginRenewLease(AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to renew a lease on this blob.

(Inherited from CloudBlob)
BeginRotateEncryptionKey(AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to rotate the encryption key on this blob. This method rotates only the KEK, not the CEK. For more information, visit https://azure.microsoft.com/en-us/documentation/articles/storage-client-side-encryption/

(Inherited from CloudBlob)
BeginRotateEncryptionKey(AsyncCallback, Object)

Begins an asynchronous operation to rotate the encryption key on this blob. This method rotates only the KEK, not the CEK. For more information, visit https://azure.microsoft.com/en-us/documentation/articles/storage-client-side-encryption/

(Inherited from CloudBlob)
BeginSetMetadata(AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to update the blob's metadata.

(Inherited from CloudBlob)
BeginSetMetadata(AsyncCallback, Object)

Begins an asynchronous operation to update the blob's metadata.

(Inherited from CloudBlob)
BeginSetProperties(AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to update the blob's properties.

(Inherited from CloudBlob)
BeginSetProperties(AsyncCallback, Object)

Begins an asynchronous operation to update the blob's properties.

(Inherited from CloudBlob)
BeginSnapshot(AsyncCallback, Object)

Begins an asynchronous operation to create a snapshot of the blob.

(Inherited from CloudBlob)
BeginSnapshot(IDictionary<String,String>, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to create a snapshot of the blob.

(Inherited from CloudBlob)
BeginStartCopy(CloudAppendBlob, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to start copying another append blob's contents, properties, and metadata to this append blob.

BeginStartCopy(CloudAppendBlob, AsyncCallback, Object)

Begins an asynchronous operation to start copying another append blob's contents, properties, and metadata to this append blob.

BeginStartCopy(Uri, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to start copying another blob's contents, properties, and metadata to this blob.

(Inherited from CloudBlob)
BeginStartCopy(Uri, AsyncCallback, Object)

Begins an asynchronous operation to start copying another blob's contents, properties, and metadata to this blob.

(Inherited from CloudBlob)
BeginUndelete(AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to undelete the soft-deleted blob.

(Inherited from CloudBlob)
BeginUndelete(AsyncCallback, Object)

Begins an asynchronous operation to undelete the soft-deleted blob.

(Inherited from CloudBlob)
BeginUploadFromByteArray(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to upload the contents of a byte array to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

BeginUploadFromByteArray(Byte[], Int32, Int32, AsyncCallback, Object)

Begins an asynchronous operation to upload the contents of a byte array to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

BeginUploadFromFile(String, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to upload a file to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

BeginUploadFromFile(String, AsyncCallback, Object)

Begins an asynchronous operation to upload a file to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

BeginUploadFromStream(Stream, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

BeginUploadFromStream(Stream, AsyncCallback, Object)

Begins an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

BeginUploadFromStream(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

BeginUploadFromStream(Stream, Int64, AsyncCallback, Object)

Begins an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

BeginUploadText(String, AsyncCallback, Object)

Begins an asynchronous operation to upload a string of text to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

BeginUploadText(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous operation to upload a string of text to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

BreakLease(Nullable<TimeSpan>, AccessCondition, BlobRequestOptions, OperationContext)

Breaks the current lease on this blob.

(Inherited from CloudBlob)
BreakLeaseAsync(Nullable<TimeSpan>)

Initiates an asynchronous operation to break the current lease on this blob.

(Inherited from CloudBlob)
BreakLeaseAsync(Nullable<TimeSpan>, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to break the current lease on this blob.

(Inherited from CloudBlob)
BreakLeaseAsync(Nullable<TimeSpan>, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to break the current lease on this blob.

(Inherited from CloudBlob)
BreakLeaseAsync(Nullable<TimeSpan>, CancellationToken)

Initiates an asynchronous operation to break the current lease on this blob.

(Inherited from CloudBlob)
ChangeLease(String, AccessCondition, BlobRequestOptions, OperationContext)

Changes the lease ID on this blob.

(Inherited from CloudBlob)
ChangeLeaseAsync(String, AccessCondition)

Initiates an asynchronous operation to change the lease on this blob.

(Inherited from CloudBlob)
ChangeLeaseAsync(String, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to change the lease on this blob.

(Inherited from CloudBlob)
ChangeLeaseAsync(String, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to change the lease on this blob.

(Inherited from CloudBlob)
ChangeLeaseAsync(String, AccessCondition, CancellationToken)

Initiates an asynchronous operation to change the lease on this blob.

(Inherited from CloudBlob)
CreateOrReplace(AccessCondition, BlobRequestOptions, OperationContext)

Creates an empty append blob. If the blob already exists, this operation will overwrite it. To throw an exception if the blob exists, instead of overwriting, pass in an AccessCondition object generated using GenerateIfNotExistsCondition().

CreateOrReplaceAsync()

Initiates an asynchronous operation to create an empty append blob. If the blob already exists, this operation will overwrite it. To throw an exception if the blob exists, instead of overwriting, use CreateOrReplaceAsync(AccessCondition, BlobRequestOptions, OperationContext).

CreateOrReplaceAsync(AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to create an empty append blob. If the blob already exists, this operation will overwrite it. To throw an exception if the blob exists, instead of overwriting, pass in an AccessCondition object generated using GenerateIfNotExistsCondition().

CreateOrReplaceAsync(AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to create an empty append blob. If the blob already exists, this operation will overwrite it. To throw an exception if the blob exists, instead of overwriting, pass in an AccessCondition object generated using GenerateIfNotExistsCondition().

CreateOrReplaceAsync(CancellationToken)

Initiates an asynchronous operation to create an append blob. If the blob already exists, this operation will overwrite it. To throw an exception if the blob exists, instead of overwriting, use CreateOrReplaceAsync(AccessCondition, BlobRequestOptions, OperationContext, CancellationToken).

CreateSnapshot(IDictionary<String,String>, AccessCondition, BlobRequestOptions, OperationContext)

Creates a snapshot of the blob.

CreateSnapshotAsync()

Initiates an asynchronous operation to create a snapshot of the blob.

CreateSnapshotAsync(CancellationToken)

Initiates an asynchronous operation to create a snapshot of the blob.

CreateSnapshotAsync(IDictionary<String,String>, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to create a snapshot of the blob.

CreateSnapshotAsync(IDictionary<String,String>, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to create a snapshot of the blob.

Delete(DeleteSnapshotsOption, AccessCondition, BlobRequestOptions, OperationContext)

Deletes the blob.

(Inherited from CloudBlob)
DeleteAsync()

Initiates an asynchronous operation to delete the blob.

(Inherited from CloudBlob)
DeleteAsync(CancellationToken)

Initiates an asynchronous operation to delete the blob.

(Inherited from CloudBlob)
DeleteAsync(DeleteSnapshotsOption, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to delete the blob.

(Inherited from CloudBlob)
DeleteAsync(DeleteSnapshotsOption, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to delete the blob.

(Inherited from CloudBlob)
DeleteIfExists(DeleteSnapshotsOption, AccessCondition, BlobRequestOptions, OperationContext)

Deletes the blob if it already exists.

(Inherited from CloudBlob)
DeleteIfExistsAsync()

Initiates an asynchronous operation to delete the blob if it already exists.

(Inherited from CloudBlob)
DeleteIfExistsAsync(CancellationToken)

Initiates an asynchronous operation to delete the blob if it already exists.

(Inherited from CloudBlob)
DeleteIfExistsAsync(DeleteSnapshotsOption, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to delete the blob if it already exists.

(Inherited from CloudBlob)
DeleteIfExistsAsync(DeleteSnapshotsOption, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to delete the blob if it already exists.

(Inherited from CloudBlob)
DownloadRangeToByteArray(Byte[], Int32, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext)

Downloads a range of bytes from a blob to a byte array.

(Inherited from CloudBlob)
DownloadRangeToByteArrayAsync(Byte[], Int32, Nullable<Int64>, Nullable<Int64>)

Initiates an asynchronous operation to download a range of bytes from a blob to a byte array.

(Inherited from CloudBlob)
DownloadRangeToByteArrayAsync(Byte[], Int32, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to download a range of bytes from a blob to a byte array.

(Inherited from CloudBlob)
DownloadRangeToByteArrayAsync(Byte[], Int32, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to download a range of bytes from a blob to a byte array.

(Inherited from CloudBlob)
DownloadRangeToByteArrayAsync(Byte[], Int32, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to download a range of bytes from a blob to a byte array.

(Inherited from CloudBlob)
DownloadRangeToByteArrayAsync(Byte[], Int32, Nullable<Int64>, Nullable<Int64>, CancellationToken)

Initiates an asynchronous operation to download a range of bytes from a blob to a byte array.

(Inherited from CloudBlob)
DownloadRangeToStream(Stream, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext)

Downloads a range of bytes from a blob to a stream.

(Inherited from CloudBlob)
DownloadRangeToStreamAsync(Stream, Nullable<Int64>, Nullable<Int64>)

Initiates an asynchronous operation to download a range of bytes from a blob to a stream.

(Inherited from CloudBlob)
DownloadRangeToStreamAsync(Stream, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to download a range of bytes from a blob to a stream.

(Inherited from CloudBlob)
DownloadRangeToStreamAsync(Stream, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to download a range of bytes from a blob to a stream.

(Inherited from CloudBlob)
DownloadRangeToStreamAsync(Stream, Nullable<Int64>, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to download a range of bytes from a blob to a stream.

(Inherited from CloudBlob)
DownloadRangeToStreamAsync(Stream, Nullable<Int64>, Nullable<Int64>, CancellationToken)

Initiates an asynchronous operation to download a range of bytes from a blob to a stream.

(Inherited from CloudBlob)
DownloadText(Encoding, AccessCondition, BlobRequestOptions, OperationContext)

Downloads the blob's contents as a string.

DownloadTextAsync()

Initiates an asynchronous operation to download the blob's contents as a string.

DownloadTextAsync(CancellationToken)

Initiates an asynchronous operation to download the blob's contents as a string.

DownloadTextAsync(Encoding, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to download the blob's contents as a string.

DownloadTextAsync(Encoding, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to download the blob's contents as a string.

DownloadTextAsync(Encoding, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to download the blob's contents as a string.

DownloadToByteArray(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext)

Downloads the contents of a blob to a byte array.

(Inherited from CloudBlob)
DownloadToByteArrayAsync(Byte[], Int32)

Initiates an asynchronous operation to download the contents of a blob to a byte array.

(Inherited from CloudBlob)
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to download the contents of a blob to a byte array.

(Inherited from CloudBlob)
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to download the contents of a blob to a byte array.

(Inherited from CloudBlob)
DownloadToByteArrayAsync(Byte[], Int32, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to download the contents of a blob to a byte array.

(Inherited from CloudBlob)
DownloadToByteArrayAsync(Byte[], Int32, CancellationToken)

Initiates an asynchronous operation to download the contents of a blob to a byte array.

(Inherited from CloudBlob)
DownloadToFile(String, FileMode, AccessCondition, BlobRequestOptions, OperationContext)

Downloads the contents of a blob to a file.

(Inherited from CloudBlob)
DownloadToFileAsync(String, FileMode)

Initiates an asynchronous operation to download the contents of a blob to a file.

(Inherited from CloudBlob)
DownloadToFileAsync(String, FileMode, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to download the contents of a blob to a file.

(Inherited from CloudBlob)
DownloadToFileAsync(String, FileMode, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to download the contents of a blob to a file.

(Inherited from CloudBlob)
DownloadToFileAsync(String, FileMode, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Downloads the contents of a blob to a file.

(Inherited from CloudBlob)
DownloadToFileAsync(String, FileMode, CancellationToken)

Initiates an asynchronous operation to download the contents of a blob to a file.

(Inherited from CloudBlob)
DownloadToFileParallelAsync(String, FileMode, Int32, Nullable<Int64>)

Initiates an asynchronous operation to download the contents of a blob to a file by making parallel requests.

(Inherited from CloudBlob)
DownloadToFileParallelAsync(String, FileMode, Int32, Nullable<Int64>, CancellationToken)

Initiates an asynchronous operation to download the contents of a blob to a file by making parallel requests.

(Inherited from CloudBlob)
DownloadToFileParallelAsync(String, FileMode, Int32, Nullable<Int64>, Int64, Nullable<Int64>, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to download the contents of a blob to a file by making parallel requests.

(Inherited from CloudBlob)
DownloadToStream(Stream, AccessCondition, BlobRequestOptions, OperationContext)

Downloads the contents of a blob to a stream.

(Inherited from CloudBlob)
DownloadToStreamAsync(Stream)

Initiates an asynchronous operation to download the contents of a blob to a stream.

(Inherited from CloudBlob)
DownloadToStreamAsync(Stream, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to download the contents of a blob to a stream.

(Inherited from CloudBlob)
DownloadToStreamAsync(Stream, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to download the contents of a blob to a stream.

(Inherited from CloudBlob)
DownloadToStreamAsync(Stream, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to download the contents of a blob to a stream.

(Inherited from CloudBlob)
DownloadToStreamAsync(Stream, CancellationToken)

Initiates an asynchronous operation to download the contents of a blob to a stream.

(Inherited from CloudBlob)
EndAbortCopy(IAsyncResult)

Ends an asynchronous operation to abort an ongoing blob copy operation.

(Inherited from CloudBlob)
EndAcquireLease(IAsyncResult)

Ends an asynchronous operation to acquire a lease on this blob.

(Inherited from CloudBlob)
EndAppendBlock(IAsyncResult)

Ends an asynchronous operation to commit a new block of data to the end of the blob.

EndAppendFromByteArray(IAsyncResult)

Ends an asynchronous operation to append the contents of a byte array to an append blob. Recommended only for single-writer scenarios.

EndAppendFromFile(IAsyncResult)

Ends an asynchronous operation to upload a file to an append blob. Recommended only for single-writer scenarios.

EndAppendFromStream(IAsyncResult)

Ends an asynchronous operation to append a stream to an append blob.

EndAppendText(IAsyncResult)

Ends an asynchronous operation to append a string of text to an append blob. This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

EndBreakLease(IAsyncResult)

Ends an asynchronous operation to break the current lease on this blob.

(Inherited from CloudBlob)
EndChangeLease(IAsyncResult)

Ends an asynchronous operation to change the lease on this blob.

(Inherited from CloudBlob)
EndCreateOrReplace(IAsyncResult)

Ends an asynchronous operation to create an append blob.

EndCreateSnapshot(IAsyncResult)

Ends an asynchronous operation to create a snapshot of the blob.

EndDelete(IAsyncResult)

Ends an asynchronous operation to delete the blob.

(Inherited from CloudBlob)
EndDeleteIfExists(IAsyncResult)

Returns the result of an asynchronous request to delete the blob if it already exists.

(Inherited from CloudBlob)
EndDownloadRangeToByteArray(IAsyncResult)

Ends an asynchronous operation to download a range of bytes from a blob to a byte array.

(Inherited from CloudBlob)
EndDownloadRangeToStream(IAsyncResult)

Ends an asynchronous operation to download a range of bytes from a blob to a stream.

(Inherited from CloudBlob)
EndDownloadText(IAsyncResult)

Ends an asynchronous operation to download the blob's contents as a string.

EndDownloadToByteArray(IAsyncResult)

Ends an asynchronous operation to download the contents of a blob to a byte array.

(Inherited from CloudBlob)
EndDownloadToFile(IAsyncResult)

Ends an asynchronous operation to download the contents of a blob to a file.

(Inherited from CloudBlob)
EndDownloadToStream(IAsyncResult)

Ends an asynchronous operation to download the contents of a blob to a stream.

(Inherited from CloudBlob)
EndExists(IAsyncResult)

Returns the asynchronous result of the request to check existence of the blob.

(Inherited from CloudBlob)
EndFetchAttributes(IAsyncResult)

Ends an asynchronous operation to populate the blob's properties and metadata.

(Inherited from CloudBlob)
EndGetAccountProperties(IAsyncResult)

Ends an asynchronous operation to get properties for the account this blob resides on.

(Inherited from CloudBlob)
EndOpenRead(IAsyncResult)

Ends an asynchronous operation to open a stream for reading from the blob.

(Inherited from CloudBlob)
EndOpenWrite(IAsyncResult)

Ends an asynchronous operation to open a stream for writing to the blob.

EndReleaseLease(IAsyncResult)

Ends an asynchronous operation to release the lease on this blob.

(Inherited from CloudBlob)
EndRenewLease(IAsyncResult)

Ends an asynchronous operation to renew a lease on this blob.

(Inherited from CloudBlob)
EndRotateEncryptionKey(IAsyncResult)

Ends an asynchronous operation to rotate the encryption key on this blob.

(Inherited from CloudBlob)
EndSetMetadata(IAsyncResult)

Ends an asynchronous operation to update the blob's metadata.

(Inherited from CloudBlob)
EndSetProperties(IAsyncResult)

Ends an asynchronous operation to update the blob's properties.

(Inherited from CloudBlob)
EndSnapshot(IAsyncResult)

Ends an asynchronous operation to create a snapshot of the blob.

(Inherited from CloudBlob)
EndStartCopy(IAsyncResult)

Ends an asynchronous operation to start copying another blob's contents, properties, and metadata to this blob.

(Inherited from CloudBlob)
EndUndelete(IAsyncResult)

Ends an asynchronous operation to undelete the soft-deleted blob.

(Inherited from CloudBlob)
EndUploadFromByteArray(IAsyncResult)

Ends an asynchronous operation to upload the contents of a byte array to an append blob. Recommended only for single-writer scenarios.

EndUploadFromFile(IAsyncResult)

Ends an asynchronous operation to upload a file to an append blob. Recommended only for single-writer scenarios.

EndUploadFromStream(IAsyncResult)

Ends an asynchronous operation to upload a stream to an append blob.

EndUploadText(IAsyncResult)

Ends an asynchronous operation to upload a string of text to an append blob. This API should be used strictly in a single writer scenario because the API internally uses the append-offset conditional header to avoid duplicate blocks which does not work in a multiple writer scenario.

Exists(BlobRequestOptions, OperationContext)

Checks existence of the blob.

(Inherited from CloudBlob)
ExistsAsync()

Initiates an asynchronous operation to check existence of the blob.

(Inherited from CloudBlob)
ExistsAsync(BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to check existence of the blob.

(Inherited from CloudBlob)
ExistsAsync(BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to check existence of the blob.

(Inherited from CloudBlob)
ExistsAsync(Boolean, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to check existence of the blob.

(Inherited from CloudBlob)
ExistsAsync(CancellationToken)

Initiates an asynchronous operation to check existence of the blob.

(Inherited from CloudBlob)
FetchAttributes(AccessCondition, BlobRequestOptions, OperationContext)

Populates a blob's properties and metadata.

(Inherited from CloudBlob)
FetchAttributesAsync()

Initiates an asynchronous operation to populate the blob's properties and metadata.

(Inherited from CloudBlob)
FetchAttributesAsync(AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to populate the blob's properties and metadata.

(Inherited from CloudBlob)
FetchAttributesAsync(AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to populate the blob's properties and metadata.

(Inherited from CloudBlob)
FetchAttributesAsync(CancellationToken)

Initiates an asynchronous operation to populate the blob's properties and metadata.

(Inherited from CloudBlob)
GetAccountProperties(BlobRequestOptions, OperationContext)

Get properties for the account this blob resides on.

(Inherited from CloudBlob)
GetAccountPropertiesAsync()

Initiates an asynchronous operation to get properties for the account this blob resides on.

(Inherited from CloudBlob)
GetAccountPropertiesAsync(BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to get properties for the account this blob resides on.

(Inherited from CloudBlob)
GetAccountPropertiesAsync(BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to get properties for the account this blob resides on.

(Inherited from CloudBlob)
GetAccountPropertiesAsync(CancellationToken)

Initiates an asynchronous operation to get properties for the account this blob resides on.

(Inherited from CloudBlob)
GetSharedAccessSignature(SharedAccessBlobPolicy)

Returns a shared access signature for the blob.

(Inherited from CloudBlob)
GetSharedAccessSignature(SharedAccessBlobPolicy, SharedAccessBlobHeaders)

Returns a shared access signature for the blob.

(Inherited from CloudBlob)
GetSharedAccessSignature(SharedAccessBlobPolicy, SharedAccessBlobHeaders, String)

Returns a shared access signature for the blob.

(Inherited from CloudBlob)
GetSharedAccessSignature(SharedAccessBlobPolicy, SharedAccessBlobHeaders, String, Nullable<SharedAccessProtocol>, IPAddressOrRange)

Returns a shared access signature for the blob.

(Inherited from CloudBlob)
GetSharedAccessSignature(SharedAccessBlobPolicy, String)

Returns a shared access signature for the blob.

(Inherited from CloudBlob)
GetUserDelegationSharedAccessSignature(UserDelegationKey, SharedAccessBlobPolicy, SharedAccessBlobHeaders, Nullable<SharedAccessProtocol>, IPAddressOrRange)

Returns an user-delegation-based shared access signature for the blob, with credentials solely based on the UserDelegationKey provided.

(Inherited from CloudBlob)
OpenRead(AccessCondition, BlobRequestOptions, OperationContext)

Opens a stream for reading from the blob.

(Inherited from CloudBlob)
OpenReadAsync()

Initiates an asynchronous operation to open a stream for reading from the blob.

(Inherited from CloudBlob)
OpenReadAsync(AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to open a stream for reading from the blob.

(Inherited from CloudBlob)
OpenReadAsync(AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to open a stream for reading from the blob.

(Inherited from CloudBlob)
OpenReadAsync(CancellationToken)

Initiates an asynchronous operation to open a stream for reading from the blob.

(Inherited from CloudBlob)
OpenWrite(Boolean, AccessCondition, BlobRequestOptions, OperationContext)

Opens a stream for writing to the blob.

OpenWriteAsync(Boolean)

Initiates an asynchronous operation to open a stream for writing to the blob.

OpenWriteAsync(Boolean, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to open a stream for writing to the blob.

OpenWriteAsync(Boolean, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to open a stream for writing to the blob.

OpenWriteAsync(Boolean, CancellationToken)

Initiates an asynchronous operation to open a stream for writing to the blob.

ReleaseLease(AccessCondition, BlobRequestOptions, OperationContext)

Releases the lease on this blob.

(Inherited from CloudBlob)
ReleaseLeaseAsync(AccessCondition)

Initiates an asynchronous operation to release the lease on this blob.

(Inherited from CloudBlob)
ReleaseLeaseAsync(AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to release the lease on this blob.

(Inherited from CloudBlob)
ReleaseLeaseAsync(AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to release the lease on this blob.

(Inherited from CloudBlob)
ReleaseLeaseAsync(AccessCondition, CancellationToken)

Initiates an asynchronous operation to release the lease on this blob.

(Inherited from CloudBlob)
RenewLease(AccessCondition, BlobRequestOptions, OperationContext)

Renews a lease on this blob.

(Inherited from CloudBlob)
RenewLeaseAsync(AccessCondition)

Initiates an asynchronous operation to renew a lease on this blob.

(Inherited from CloudBlob)
RenewLeaseAsync(AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to renew a lease on this blob.

(Inherited from CloudBlob)
RenewLeaseAsync(AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to renew a lease on this blob.

(Inherited from CloudBlob)
RenewLeaseAsync(AccessCondition, CancellationToken)

Initiates an asynchronous operation to renew a lease on this blob.

(Inherited from CloudBlob)
RotateEncryptionKey(AccessCondition, BlobRequestOptions, OperationContext)

Rotates the encryption key on this blob. This method rotates only the KEK, not the CEK. For more information, visit https://azure.microsoft.com/en-us/documentation/articles/storage-client-side-encryption/

(Inherited from CloudBlob)
RotateEncryptionKeyAsync()

Initiates an asynchronous operation to rotate the encryption key on this blob. This method rotates only the KEK, not the CEK. For more information, visit https://azure.microsoft.com/en-us/documentation/articles/storage-client-side-encryption/

(Inherited from CloudBlob)
RotateEncryptionKeyAsync(AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to rotate the encryption key on this blob. This method rotates only the KEK, not the CEK. For more information, visit https://azure.microsoft.com/en-us/documentation/articles/storage-client-side-encryption/

(Inherited from CloudBlob)
RotateEncryptionKeyAsync(AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to rotate the encryption key on this blob. This method rotates only the KEK, not the CEK. For more information, visit https://azure.microsoft.com/en-us/documentation/articles/storage-client-side-encryption/

(Inherited from CloudBlob)
RotateEncryptionKeyAsync(CancellationToken)

Initiates an asynchronous operation to rotate the encryption key on this blob. This method rotates only the KEK, not the CEK. For more information, visit https://azure.microsoft.com/en-us/documentation/articles/storage-client-side-encryption/

(Inherited from CloudBlob)
SetMetadata(AccessCondition, BlobRequestOptions, OperationContext)

Updates the blob's metadata.

(Inherited from CloudBlob)
SetMetadataAsync()

Initiates an asynchronous operation to update the blob's metadata.

(Inherited from CloudBlob)
SetMetadataAsync(AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to update the blob's metadata.

(Inherited from CloudBlob)
SetMetadataAsync(AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to update the blob's metadata.

(Inherited from CloudBlob)
SetMetadataAsync(CancellationToken)

Initiates an asynchronous operation to update the blob's metadata.

(Inherited from CloudBlob)
SetProperties(AccessCondition, BlobRequestOptions, OperationContext)

Updates the blob's properties.

(Inherited from CloudBlob)
SetPropertiesAsync()

Initiates an asynchronous operation to update the blob's properties.

(Inherited from CloudBlob)
SetPropertiesAsync(AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to update the blob's properties.

(Inherited from CloudBlob)
SetPropertiesAsync(AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to update the blob's properties.

(Inherited from CloudBlob)
SetPropertiesAsync(CancellationToken)

Initiates an asynchronous operation to update the blob's properties.

(Inherited from CloudBlob)
Snapshot(IDictionary<String,String>, AccessCondition, BlobRequestOptions, OperationContext)

Creates a snapshot of the blob.

(Inherited from CloudBlob)
SnapshotAsync()

Initiates an asynchronous operation to create a snapshot of the blob.

(Inherited from CloudBlob)
SnapshotAsync(CancellationToken)

Initiates an asynchronous operation to create a snapshot of the blob.

(Inherited from CloudBlob)
SnapshotAsync(IDictionary<String,String>, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to create a snapshot of the blob.

(Inherited from CloudBlob)
SnapshotAsync(IDictionary<String,String>, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to create a snapshot of the blob.

(Inherited from CloudBlob)
StartCopy(CloudAppendBlob, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext)

Begins an operation to start copying another append blob's contents, properties, and metadata to this append blob.

StartCopy(Uri, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext)

Begins an operation to start copying another blob's contents, properties, and metadata to this blob.

(Inherited from CloudBlob)
StartCopyAsync(CloudAppendBlob)

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

StartCopyAsync(CloudAppendBlob, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext)

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

StartCopyAsync(CloudAppendBlob, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

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

StartCopyAsync(CloudAppendBlob, CancellationToken)

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

StartCopyAsync(Uri)

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

(Inherited from CloudBlob)
StartCopyAsync(Uri, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext)

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

(Inherited from CloudBlob)
StartCopyAsync(Uri, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

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

(Inherited from CloudBlob)
StartCopyAsync(Uri, CancellationToken)

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

(Inherited from CloudBlob)
StartCopyAsync(Uri, Nullable<PremiumPageBlobTier>, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

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

(Inherited from CloudBlob)
StartCopyAsync(Uri, Nullable<StandardBlobTier>, Nullable<RehydratePriority>, AccessCondition, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

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

(Inherited from CloudBlob)
Undelete(AccessCondition, BlobRequestOptions, OperationContext)

UnDeletes the blob if it is soft-deleted.

(Inherited from CloudBlob)
UndeleteAsync()

Initiates an asynchronous operation to undelete the soft-deleted blob.

(Inherited from CloudBlob)
UndeleteAsync(AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to undelete the soft-deleted blob.

(Inherited from CloudBlob)
UndeleteAsync(AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to undelete the soft-deleted blob.

(Inherited from CloudBlob)
UndeleteAsync(CancellationToken)

Initiates an asynchronous operation to delete the blob.

(Inherited from CloudBlob)
UploadFromByteArray(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext)

Uploads the contents of a byte array to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromByteArrayAsync(Byte[], Int32, Int32)

Initiates an asynchronous operation to upload the contents of a byte array to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromByteArrayAsync(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to upload the contents of a byte array to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromByteArrayAsync(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to upload the contents of a byte array to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromByteArrayAsync(Byte[], Int32, Int32, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to upload the contents of a byte array to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromByteArrayAsync(Byte[], Int32, Int32, CancellationToken)

Initiates an asynchronous operation to upload the contents of a byte array to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromFile(String, AccessCondition, BlobRequestOptions, OperationContext)

Uploads a file to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromFileAsync(String)

Initiates an asynchronous operation to upload a file to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromFileAsync(String, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to upload a file to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromFileAsync(String, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to upload a file to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromFileAsync(String, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to upload a file to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromFileAsync(String, CancellationToken)

Initiates an asynchronous operation to upload a file to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromStream(Stream, AccessCondition, BlobRequestOptions, OperationContext)

Uploads a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromStream(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext)

Uploads a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromStreamAsync(Stream)

Initiates an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten.

UploadFromStreamAsync(Stream, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromStreamAsync(Stream, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromStreamAsync(Stream, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromStreamAsync(Stream, CancellationToken)

Initiates an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten.

UploadFromStreamAsync(Stream, Int64)

Initiates an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten.

UploadFromStreamAsync(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromStreamAsync(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromStreamAsync(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadFromStreamAsync(Stream, Int64, CancellationToken)

Initiates an asynchronous operation to upload a stream to an append blob. If the blob already exists, it will be overwritten.

UploadFromStreamAsyncHelper(Stream, Nullable<Int64>, Boolean, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Uploads a stream to an append blob. Recommended only for single-writer scenarios.

UploadText(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext)

Uploads a string of text to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadTextAsync(String)

Initiates an asynchronous operation to upload a string of text to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadTextAsync(String, CancellationToken)

Initiates an asynchronous operation to upload a string of text to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadTextAsync(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext)

Initiates an asynchronous operation to upload a string of text to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadTextAsync(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext, CancellationToken)

Initiates an asynchronous operation to upload a string of text to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

UploadTextAsync(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext, IProgress<StorageProgress>, CancellationToken)

Initiates an asynchronous operation to upload a string of text to an append blob. If the blob already exists, it will be overwritten. Recommended only for single-writer scenarios.

Applies to