Method Stop
Stop()
Stops monitoring for file changes.
public void Stop()
Examples
Stopping the watcher:
var watcher = new SkillWatcher(registry, "./skills");
watcher.Start();
// ... do work ...
watcher.Stop();
Console.WriteLine("Watcher stopped");
Stops monitoring for file changes.
public void Stop()
Stopping the watcher:
var watcher = new SkillWatcher(registry, "./skills");
watcher.Start();
// ... do work ...
watcher.Stop();
Console.WriteLine("Watcher stopped");