Captura.Recorder.Pause C# (CSharp) Method

Pause() public method

public Pause ( ) : void
return void
        public void Pause()
        {
            if (!IsPaused)
            {
                screenThread.Suspend();
                if (audioSource != null) audioSource.StopRecording();
                IsPaused = true;
            }
        }
        public void Resume()