public bool Stop()
 {
     _service.Dispose();
     _service = null;
     return true;
 }
 public bool Start()
 {
     _service = new X10AgentService();
     _service.Run();
     return(true);
 }
 public bool Start()
 {
     _service = new X10AgentService();
     _service.Run();
     return true;
 }
 public bool Stop()
 {
     _service.Dispose();
     _service = null;
     return(true);
 }