Table of Contents

Property IsRunning

Namespace
LMKit.Agents.Skills
Assembly
LM-Kit.NET.dll

IsRunning

Gets whether the watcher is currently monitoring for changes.

public bool IsRunning { get; }

Property Value

bool

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