Exemplo n.º 1
0
 internal bool IsTimedOut()
 {
     if (timeout == -1)
     {
         return(false);
     }
     else
     {
         double time = command.TimeSinceInitialized();
         return(time == 0 ? false : time >= timeout);
     }
 }