Share via


cloud_block_blob::cloud_block_blob Constructor

Initializes a new instance of the azure::storage::cloud_block_blob class using an absolute URI to the blob.

cloud_block_blob();

explicit cloud_block_blob(
   storage_uri uri
);

cloud_block_blob(
   storage_uri uri,
   storage_credentials credentials
);

cloud_block_blob(
   storage_uri uri,
   utility::string_t snapshot_time,
   storage_credentials credentials
);

cloud_block_blob(
   const cloud_blob& blob
);

cloud_block_blob(
   cloud_block_blob&& other
);

Parameters

  • uri
    A storage_uri object containing the absolute URI to the blob for all locations.
  • credentials
    The storage_credentials to use.
  • snapshot_time
    The snapshot timestamp, if the blob is a snapshot.
  • blob
    Reference to the blob.
  • other
    A reference to a set of cloud_block_blob on which to base the new instance.

Requirements

Header: blob.h

Namespace: azure::storage

See Also

Reference

cloud_block_blob Class