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

Deleted() public method

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