You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 19:31:35 +00:00
Replace XML codeblock spaces with tabs
This commit is contained in:
@@ -62,8 +62,8 @@
|
||||
Returns all response headers as a [Dictionary]. Each entry is composed by the header name, and a [String] containing the values separated by [code]"; "[/code]. The casing is kept the same as the headers were received.
|
||||
[codeblock]
|
||||
{
|
||||
"content-length": 12,
|
||||
"Content-Type": "application/json; charset=UTF-8",
|
||||
"content-length": 12,
|
||||
"Content-Type": "application/json; charset=UTF-8",
|
||||
}
|
||||
[/codeblock]
|
||||
</description>
|
||||
@@ -119,9 +119,9 @@
|
||||
[csharp]
|
||||
var fields = new Godot.Collections.Dictionary
|
||||
{
|
||||
{ "single", 123 },
|
||||
{ "notValued", default },
|
||||
{ "multiple", new Godot.Collections.Array { 22, 33, 44 } },
|
||||
{ "single", 123 },
|
||||
{ "notValued", default },
|
||||
{ "multiple", new Godot.Collections.Array { 22, 33, 44 } },
|
||||
};
|
||||
string queryString = httpClient.QueryStringFromDict(fields);
|
||||
// Returns "single=123&not_valued&multiple=22&multiple=33&multiple=44"
|
||||
|
||||
Reference in New Issue
Block a user