Exemplo n.º 1
0
 public void AddInException(object sender, ExceptionAddEventArgs e)
 {
     //ExceptionFiles.Add((ExceptionFile)e.FileWithException.Clone());
     DangerFiles.RemoveAll(x => x.Path == e.FileWithException.Path);
     FileCheckedEvent?.Invoke(this, new FileCheckEventArgs(false));
 }
Exemplo n.º 2
0
 public void AddInDangerFile(object sender, FindDangerEventArgs e)
 {
     DangerFiles.Add(e.DangerFile);
     FileCheckedEvent?.Invoke(this, new FileCheckEventArgs(true));
 }