contentRange property

(int, int, int)? get contentRange
inherited

The range of bytes to be returned by the server.

If the server is returning a partial content response, this will be a tuple with three elements:

  • The start of the range.
  • The end of the range.
  • The total number of bytes in the full content.

Implementation

(int, int, int)? get contentRange;
set contentRange ((int, int, int)? value)

The range of bytes requested by the client.

start, end, total

Implementation

set contentRange((int, int, int)? value);