aboutsummaryrefslogtreecommitdiff
path: root/doc/classes/HTTPRequest.xml
diff options
context:
space:
mode:
authorRémi Verschelde2017-11-24 18:10:32 +0100
committerRémi Verschelde2017-11-24 18:10:32 +0100
commit92f07fefcd334686e81f56555d83530ae6741c2b (patch)
tree8fa1e89cfc407ed7ad9913e27845a72a7eb46598 /doc/classes/HTTPRequest.xml
parent31f62f53c516360dcf8688141a5f8a0aebada431 (diff)
downloadgodot-92f07fefcd334686e81f56555d83530ae6741c2b.tar.gz
godot-92f07fefcd334686e81f56555d83530ae6741c2b.tar.zst
godot-92f07fefcd334686e81f56555d83530ae6741c2b.zip
doc: Remove setters and getters now exposed via properties/members
Diffstat (limited to 'doc/classes/HTTPRequest.xml')
-rw-r--r--doc/classes/HTTPRequest.xml48
1 files changed, 0 insertions, 48 deletions
diff --git a/doc/classes/HTTPRequest.xml b/doc/classes/HTTPRequest.xml
index c24129bac..3b5398d7b 100644
--- a/doc/classes/HTTPRequest.xml
+++ b/doc/classes/HTTPRequest.xml
@@ -26,13 +26,6 @@
Return the response body length.
</description>
</method>
- <method name="get_body_size_limit" qualifiers="const">
- <return type="int">
- </return>
- <description>
- Return current body size limit.
- </description>
- </method>
<method name="get_download_file" qualifiers="const">
<return type="String">
</return>
@@ -54,20 +47,6 @@
Return the current status of the underlying [HTTPClient].
</description>
</method>
- <method name="get_max_redirects" qualifiers="const">
- <return type="int">
- </return>
- <description>
- Return the maximum amount of redirects that will be followed.
- </description>
- </method>
- <method name="is_using_threads" qualifiers="const">
- <return type="bool">
- </return>
- <description>
- Whether this request is using threads.
- </description>
- </method>
<method name="request">
<return type="int" enum="Error">
</return>
@@ -84,15 +63,6 @@
<description>
</description>
</method>
- <method name="set_body_size_limit">
- <return type="void">
- </return>
- <argument index="0" name="bytes" type="int">
- </argument>
- <description>
- Set the response body size limit.
- </description>
- </method>
<method name="set_download_file">
<return type="void">
</return>
@@ -102,24 +72,6 @@
Set the file to download into. Outputs the response body into the file.
</description>
</method>
- <method name="set_max_redirects">
- <return type="void">
- </return>
- <argument index="0" name="amount" type="int">
- </argument>
- <description>
- Set the maximum amount of redirects the request will follow.
- </description>
- </method>
- <method name="set_use_threads">
- <return type="void">
- </return>
- <argument index="0" name="enable" type="bool">
- </argument>
- <description>
- Make this HTTPRequest use threads.
- </description>
- </method>
</methods>
<members>
<member name="body_size_limit" type="int" setter="set_body_size_limit" getter="get_body_size_limit">