| 492 | } |
| 493 | |
| 494 | bool HttpClient::Post(const std::string& url, |
| 495 | const std::string& data, |
| 496 | const Options& options, |
| 497 | HttpResponse *response, |
| 498 | ErrorCode *error) |
| 499 | { |
| 500 | return Request(HttpRequest::METHOD_POST, url, data, options, response, error); |
| 501 | } |
| 502 | |
| 503 | bool HttpClient::Post(const std::string& url, |
| 504 | const std::string& data, |