Exemplo n.º 1
0
 private void NewClientConnected(IRemoteXTMF obj)
 {
     // Setup a new model system for them to execute
     lock (this)
     {
         obj.SendModelSystem(ModelSystemToExecute);
         Configuration.CreateProgressReport(obj.UniqueID == null ? "Remote Host" : obj.UniqueID, delegate
         {
             return(obj.Progress);
         }, new Tuple <byte, byte, byte>(50, 50, 150));
     }
 }
Exemplo n.º 2
0
 private void Host_NewClientConnected(IRemoteXTMF obj)
 {
     // fire off the model system to the client
     obj.SendModelSystem(ClientStructure);
 }
Exemplo n.º 3
0
 private void Host_NewClientConnected(IRemoteXTMF obj)
 {
     // fire off the model system to the client
     obj.SendModelSystem(ClientStructure);
 }