| 332 | |
| 333 | |
| 334 | Request Request::Get(string url, const unordered_map<string, string>& headers, const vector<pair<string, string>>& params, |
| 335 | std::function<bool(size_t, size_t)> downloadProgress, std::function<bool(size_t, size_t)> uploadProgress) |
| 336 | { |
| 337 | return Request("GET", url, headers, params, downloadProgress, uploadProgress); |
| 338 | } |
| 339 | |
| 340 | |
| 341 | Request Request::Post(string url, const unordered_map<string, string>& headers, const vector<pair<string, string>>& params, |
no test coverage detected