예제 #1
0
 /// <summary>
 /// Pause the Simulation.
 /// </summary>
 public void PauseSimulation()
 {
     try
     {
         channel.PauseSimulation();
     }
     catch (FaultException <AntMeFault> fault)
     {
         throw new ArgumentException(fault.Detail.Description);
     }
     catch (Exception ex)
     {
         CloseByError(ex);
         throw;
     }
 }