public void Disconnect()
 {
     Log("Disconnect");
     try
     {
         _BaseInstrument.Disconnect();
     }
     catch (Exception e)
     {
         Log("Disconnect threw {0}", e.Message);
         throw;
     }
 }