Share via


cloud_blob_client::cloud_blob_client Constructor

Initializes a new instance of the azure::storage::cloud_blob_client class.

cloud_blob_client();

explicit cloud_blob_client(
   storage_uri base_uri
);

cloud_blob_client(
   storage_uri base_uri,
   storage_credentials credentials
);

cloud_blob_client(
   storage_uri base_uri,
   storage_credentials credentials,
   blob_request_options default_request_options
);

cloud_blob_client(
   cloud_blob_client&& other
);

Parameters

  • base_uri
    A storage_uri object containing the Blob service endpoint for all locations.
  • credentials
    The storage_credentials to use.
  • default_request_options
    The default blob_request_options object to use for all requests made with this client object.
  • other
    A reference to a set of cloud_blob_client on which to base the new instance.

Requirements

Header: blob.h

Namespace: azure::storage

See Also

Reference

cloud_blob_client Class