| 1026 | } |
| 1027 | |
| 1028 | bool SC::HttpClientResponse::getContentLength(uint64_t& value) const |
| 1029 | { |
| 1030 | StringSpan text; |
| 1031 | return getHeader("Content-Length", text) and parseAsciiUint64(text, value); |
| 1032 | } |
| 1033 | |
| 1034 | bool SC::HttpClientResponse::getContentType(StringSpan& value) const { return getHeader("Content-Type", value); } |
| 1035 |
nothing calls this directly
no test coverage detected