@@ -513,29 +513,29 @@ send return the class itself, so they can be added one after the other like a ch
513
513
> All methods and parameters descriptions are also available within the code as comment for IDEs.
514
514
515
515
``` cpp
516
- - HttpRequest& setMethod (const HttpMethod& method) noexcept
516
+ HttpRequest& setMethod (const HttpMethod& method) noexcept;
517
517
518
- - HttpRequest& setQueryString(const std::string& queryString) noexcept
518
+ HttpRequest& setQueryString(const std::string& queryString) noexcept;
519
519
520
- - HttpRequest& setPayload(const std::string& payload) noexcept
520
+ HttpRequest& setPayload(const std::string& payload) noexcept;
521
521
522
- - HttpRequest& returnAsBinary() noexcept
522
+ HttpRequest& returnAsBinary() noexcept;
523
523
524
- - HttpRequest& addHeader(const std::string& key, const std::string& value) noexcept
524
+ HttpRequest& addHeader(const std::string& key, const std::string& value) noexcept;
525
525
526
- - HttpRequest& setTimeout(const int timeout) noexcept
526
+ HttpRequest& setTimeout(const int timeout) noexcept;
527
527
528
- - HttpRequest& ignoreSslErrors() noexcept
528
+ HttpRequest& ignoreSslErrors() noexcept;
529
529
530
- - HttpRequest& setTLSVersion(const TLSVersion version) noexcept
530
+ HttpRequest& setTLSVersion(const TLSVersion version) noexcept;
531
531
532
- - HttpRequest& setUserAgent(const std::string& userAgent) noexcept
532
+ HttpRequest& setUserAgent(const std::string& userAgent) noexcept;
533
533
534
- - HttpRequest& setDownloadBandwidthLimit(const int limit) noexcept
534
+ HttpRequest& setDownloadBandwidthLimit(const int limit) noexcept;
535
535
536
- - HttpRequest& setUploadBandwidthLimit(const int limit) noexcept
536
+ HttpRequest& setUploadBandwidthLimit(const int limit) noexcept;
537
537
538
- - std::future<HttpResult > send() noexcept
538
+ std::future<HttpResult > send() noexcept;
539
539
```
540
540
541
541
0 commit comments