Exemplo n.º 1
0
 public ScanRequest()
 {
     _roots    = new List <string>();
     _filter   = new List <string>();
     _excludes = new List <string>();
     _onFound  = new CompositeAction <FileFound>();
 }
Exemplo n.º 2
0
 public void AddHandler(Action <FileFound> handler)
 {
     _onFound += handler;
 }