ALE.FileSystem.FileSystemWatcher.Changed C# (CSharp) Method

Changed() public method

public Changed ( Action callback ) : FileSystemWatcher
callback Action
return FileSystemWatcher
        public FileSystemWatcher Changed(Action<string> callback)
        {
            _fsw.Changed += (sender, args) => EventLoop.Pend(() => callback(args.FullPath));
            return this;
        }