ALE.FileSystem.FileSystemWatcher.Deleted C# (CSharp) 메소드

Deleted() 공개 메소드

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