diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-02-20 01:27:38 +0100 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-02-20 01:27:38 +0100 |
commit | 11c241abd7c3c363747cf2e3faa9467dbbd89449 (patch) | |
tree | 842c61af4facaf86b660ea8b6ad86ca25e15315d | |
parent | cc7cca55b0a845aaac7be27265cb76ab60b7c504 (diff) | |
parent | d809987827b86df49e94081af00b7b61a19a9949 (diff) |
Merge pull request #3782 from AlexHolly/doc-http-header
update doc on HTTPClient headers case-sensitivity
-rw-r--r-- | doc/base/classes.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 4c30d98338..034d32576b 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -13032,7 +13032,9 @@ Returns an empty String "" at the end of the list. <return type="Dictionary"> </return> <description> - Returns all response headers as dictionary where the keys and values are transformed to lower case. A key with more than one value is a simple string with "; " as separator. example: (content-length:12), (content-type:application/json; charset=utf-8) + Returns all response headers as dictionary where the case-sensitivity of the keys and values is kept like the server delivers it. A value is a simple String, this string can have more than one value where "; " is used as separator. +Structure: ("key":"value1; value2") +Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) </description> </method> <method name="get_response_body_length" qualifiers="const"> @@ -20052,6 +20054,10 @@ Returns an empty String "" at the end of the list. <description> </description> </method> + <method name="native_video_unpause"> + <description> + </description> + </method> <method name="get_scancode_string" qualifiers="const"> <return type="String"> </return> |