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

Created() public method

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