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

Renamed() public method

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