Exemplo n.º 1
0
 protected virtual bool Filter(string filePath, FileRecordReason reason)
 {
     return(this.recordFilter == null || this.recordFilter.Filter(filePath, reason));
 }
Exemplo n.º 2
0
 public void Listen(string filePath, FileRecordReason reason)
 {
     Console.WriteLine($"filePath: {filePath} reason: {reason}");
 }
Exemplo n.º 3
0
 public bool Filter(string filePath, FileRecordReason reason)
 {
     return(this.regex == null || this.regex.Match(filePath).Success);
 }