godot c# notworking json

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By karismaup

How do I resolve this error? please help

File jsonfile = new File();
jsonfile.Open( _jsonPath , (int)File.ModeFlags.Read );
var jsonString = jsonfile.GetAsText();
var parseData  = JSON.Parse( jsonString );
var data = (Dictionary<object, object>) parseData.Result;
       
GD.Print( data["scene"] );

error!!

drivers/unix/net_socket_posix.cpp:190 - Socket error: 10054

Comment parts of the code to see what line is the culprit.

Dlean Jeans | 2019-06-12 08:42