コード例 #1
0
 public void ExcludeSid(LogLine line)
 {
     var str = line.Sid;
     AndFilters.Add(Filter.S1(l => l.Sid != str));
     DoFilter();
 }
コード例 #2
0
ファイル: Filter.cs プロジェクト: marhoily/OrwellLogParser
 public override bool Test(LogLine line)
 {
     return _predicate(line);
 }
コード例 #3
0
ファイル: LogEntry.cs プロジェクト: marhoily/OrwellLogParser
 public LogEntry(string line, LogLine attrs)
 {
     _line = line;
     Attrs = attrs;
 }
コード例 #4
0
ファイル: Filter.cs プロジェクト: marhoily/OrwellLogParser
 public abstract bool Test(LogLine line);