Is Recording
Learn how to check if recording is in progress
Check if already there is a screen recording happening. This returns true if a screen recording already stared and running.
recorder.IsRecording();
Example
IScreenRecorder recorder;
//...
public void IsRecording()
{
return recorder.IsRecording();
}
Last updated
Was this helpful?