Boost.Burl

    • Introduction
    • Quick Start
    • Guide
      • Making Requests
      • Request Bodies
      • Responses
      • Error Handling
      • Headers
      • Query Parameters
      • Authentication
      • Redirects
      • Cookies
      • Timeouts
      • Connection Pool
      • Proxies
      • Compression
      • Extending
    • Examples
      • Usage
      • nlohmann/json
    • Testing
    • Reference
  • boost::burl::message_head_base::chunked
arrow_upward

boost::burl::message_head_base::chunked

Return true if the payload uses chunked framing.

Synopsis

Declared in <boost/burl/message_head_base.hpp>

bool
chunked() const noexcept;

Description

This is a shorthand for `payload() == http::payload::chunked`, true when a final "chunked" transfer coding determines the payload framing.

Complexity

Constant.

Return Value

true if the payload uses chunked framing.

Created with MrDocs