Example #1
0
 public void Stop()
 {
     if (_capturer == null)
     {
         throw new InvalidOperationException("CaptureNotStarted");
     }
     _capturer.Stop();
     _capturer.Dispose(); _capturer = null;
 }