From 8ea940e99b3ec46adadac9f2366b1ee0a5a5bf81 Mon Sep 17 00:00:00 2001 From: J08nY Date: Fri, 3 Jun 2016 18:01:16 +0200 Subject: [PATCH] Added classref for HTTPClient and HTTPRequest (cherry picked from commit 4c5439f8cd787d6422a5ca30316f256227ff3405) --- doc/base/classes.xml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 49dba6498bf..ef71f1c8169 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -13434,8 +13434,11 @@ This approximation makes straight segments between each point, then subdivides t + Hyper-text transfer protocol client. + Hyper-text transfer protocol client. Supports SSL and SSL server certificate verification. + Can be reused to connect to different hosts and make many requests. @@ -13459,6 +13462,7 @@ This approximation makes straight segments between each point, then subdivides t + Set connection to use, for this client. @@ -13504,30 +13508,35 @@ This approximation makes straight segments between each point, then subdivides t + Cloces the current connection, allows for reusal of [HTTPClient]. + Return whether this [HTTPClient] has a response available. + Return whether this [HTTPClient] has a response that is chunked. + Return the HTTP status code of the response. + Return the response headers. @@ -13543,32 +13552,35 @@ Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) + Return the response's body length. + Reads one chunk from the response. - Sets the size of the buffer used and maximum bytes to read per iteration + Sets the size of the buffer used and maximum bytes to read per iteration. see [method read_response_body_chunk] - If set to true, execute will wait until all data is read from the response. + If set to true, execution will block until all data is read from the response. + Return whether blocking mode is enabled.