public ScanRequest() { _roots = new List <string>(); _filter = new List <string>(); _excludes = new List <string>(); _onFound = new CompositeAction <FileFound>(); }
public void AddHandler(Action <FileFound> handler) { _onFound += handler; }