14 : Code_ { reply->attribute (QNetworkRequest::HttpStatusCodeAttribute).toInt () }
15 , Data_ { reply->readAll () }
17 const auto& raws = reply->rawHeaderPairs ();
19 Headers_.reserve (raws.size ());
20 for (
const auto& [header, value] : raws)
21 Headers_ [header] << value;
25 : Error_ { reply->error () }
26 , ErrorString_ { reply->errorString () }
27 , HttpStatusCode_ { reply->attribute (QNetworkRequest::HttpStatusCodeAttribute) }