| 1154 | } |
| 1155 | |
| 1156 | bool SC::HttpClientResponse::hasContentCoding(HttpClientContentCoding::Type type) const |
| 1157 | { |
| 1158 | HttpClientContentCodingIterator iterator; |
| 1159 | HttpClientContentCoding contentCoding; |
| 1160 | while (getNextContentCoding(iterator, contentCoding)) |
| 1161 | { |
| 1162 | if (contentCoding.type == type) |
| 1163 | { |
| 1164 | return true; |
| 1165 | } |
| 1166 | } |
| 1167 | return false; |
| 1168 | } |
| 1169 | |
| 1170 | bool SC::HttpClientResponse::hasTransferCoding(HttpClientTransferCoding::Type type) const |
| 1171 | { |
no outgoing calls