Share via


cloud_block_blob::download_block_list Method

Returns an enumerable collection of the blob's blocks, using the specified block list filter.

std::vector<block_list_item> download_block_list() const;

std::vector<block_list_item> download_block_list(
   block_listing_filter listing_filter,
   const access_condition& condition,
   const blob_request_options& options,
   operation_context context
) const;

Parameters

  • listing_filter
    One of the enumeration values that indicates whether to return committed blocks, uncommitted blocks, or both.
  • condition
    An azure::storage::access_condition object that represents the access condition for the operation.
  • options
    A azure::storage::blob_request_options object that specifies additional options for the request.
  • context
    An azure::storage::operation_context object that represents the context for the current operation.

Return Value

An enumerable collection of objects implementing azure::storage::block_list_item.

Requirements

Header: blob.h

Namespace: azure::storage

See Also

Reference

cloud_block_blob Class