//------------------------------------------------------------------------------------------------------------------------ public void OnConnectedToCloud() { try { //inform cloud about localy deployed graphs var msg = new LocallyDeployedGraphsMsg() { DeployedGraphKeys = Graphs.Keys.Select(k => k.ToStringInvariant()).ToArray(), }; Node.SendMessage(msg); } catch (Exception ex) { DebugEx.Assert(ex, "Unhandled exception"); } }