Share via


cloud_table::execute_query_segmented Method

Executes a query with the specified azure::storage::continuation_token to retrieve the next page of results.

table_query_segment execute_query_segmented(
   const table_query& query,
   const continuation_token& token
) const;

table_query_segment execute_query_segmented(
   const table_query& query,
   const continuation_token& token,
   const table_request_options& options,
   operation_context context
) const;

Parameters

  • query
    A azure::storage::table_query object.
  • token
    A azure::storage::continuation_token object.
  • options
    A azure::storage::table_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. This object is used to track requests to the storage service, and to provide additional runtime information about the operation.

Return Value

A azure::storage::table_query_segment object containing the results of the query.

Requirements

Header: table.h

Namespace: azure::storage

See Also

Reference

cloud_table Class