Ejemplo n.º 1
0
 public override bool Device_Send(string raw)
 {
     if (Connected)
     {
         Console.WriteLine("Trying to send to '" + DeviceName + "': " + raw);
         server.SendMessage(raw);
         return(true);
     }
     else
     {
         Debug.WriteLine("ERROR: Could not send to Server, not connected");
         return(false);
     }
 }