> For the complete documentation index, see [llms.txt](https://assetstore.replaykit.voxelbusters.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://assetstore.replaykit.voxelbusters.com/api/is-recording.md).

# Is Recording

Check if already there is a screen recording happening. This returns true if a screen recording already stared and running.

```csharp
recorder.IsRecording();
```

Example

```csharp
IScreenRecorder recorder;
//...
public void IsRecording()
{
  return recorder.IsRecording();
}
```
