예제 #1
0
 public void stopInventory()
 {
     try
     {
         if (connected && started)
         {
             _readerSettings.Stop_ROSpec(_currentSpecID);
             _readerSettings.Disable_ROSpec(_currentSpecID);
             started = false;
             Console.WriteLine("status:connected");
         }
     }
     catch (Exception e)
     {
         Console.WriteLine(e.ToString());
     }
 }