// UPythonClient:
public static UPythonClient GetClient(string name);
// UPythonClient Instance:
public TcpConnectionState GetConnectionState();
Implement the dispose interface for UPythonClient.
Refined the framework and bug fixed.
Added a unified connect method that using the global settings.
var client = new UPythonClient("client1");
bool ok = await client.ConnectFromGlobalAsync();
if (ok) client.StartReceiveLoop();
