mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Update C# signal documentation and remove bind array
- Updates C# signal documentation and code examples to the new API in 4.0 - Replace all `nameof` usages with the exposed `StringName`
This commit is contained in:
@@ -69,7 +69,7 @@
|
||||
}
|
||||
|
||||
// Called when the HTTP request is completed.
|
||||
private void HttpRequestCompleted(int result, int response_code, string[] headers, byte[] body)
|
||||
private void HttpRequestCompleted(int result, int responseCode, string[] headers, byte[] body)
|
||||
{
|
||||
var json = new JSON();
|
||||
json.Parse(body.GetStringFromUTF8());
|
||||
@@ -128,7 +128,7 @@
|
||||
}
|
||||
|
||||
// Called when the HTTP request is completed.
|
||||
private void HttpRequestCompleted(int result, int response_code, string[] headers, byte[] body)
|
||||
private void HttpRequestCompleted(int result, int responseCode, string[] headers, byte[] body)
|
||||
{
|
||||
if (result != (int)HTTPRequest.Result.Success)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user