Property IsRunning
IsRunning
Gets whether the watcher is currently monitoring for changes.
public bool IsRunning { get; }
Property Value
Examples
Checking if the watcher is running:
var watcher = new SkillWatcher(registry, "./skills");
Console.WriteLine(watcher.IsRunning); // False
watcher.Start();
Console.WriteLine(watcher.IsRunning); // True