예제 #1
0
 public bool Accepts(LogEntry logEntry) => AddressFilter.Accepts(logEntry.LoggersAddress) && TopicsFilter.Accepts(logEntry);
예제 #2
0
 public bool Accepts(ref LogEntryStructRef logEntry) => AddressFilter.Accepts(ref logEntry.LoggersAddress) && TopicsFilter.Accepts(ref logEntry);
예제 #3
0
 public bool Accepts(LogEntry logEntry)
 {
     return(_addressFilter.Accepts(logEntry.LoggersAddress) && _topicsFilter.Accepts(logEntry));
 }