Ejemplo n.º 1
0
 public static void Pause()
 {
     if (!isPaused)
     {
         isPaused = true;
         watcher.Pause();
         timer.Dispose();
         pi.Notify("Paused", "TorrentFlow is now paused.", 1000);
     }
     else
     {
         pi.Notify("Already Paused", "TorrentFlow is already paused.", 1000);
     }
 }