Exemplo n.º 1
0
 internal NotMatcher(LogEntityMatcher matcher)
 {
     if (matcher == null)
     {
         throw new ArgumentNullException();
     }
     this._matcher = matcher;
 }
Exemplo n.º 2
0
 public Filter(Appender appender, LogEntityMatcher matcher)
     : base(appender)
 {
     if (matcher == null)
     {
         throw new ArgumentNullException();
     }
     this._matcher = matcher;
 }
Exemplo n.º 3
0
 public static LogEntityMatcher Not(LogEntityMatcher matcher)
 {
     return(new LogEntityMatchers.NotMatcher(matcher));
 }
Exemplo n.º 4
0
 internal NotMatcher(LogEntityMatcher matcher)
 {
     if (matcher == null) throw new ArgumentNullException();
     this._matcher = matcher;
 }
Exemplo n.º 5
0
 public static LogEntityMatcher Not(LogEntityMatcher matcher)
 {
     return new LogEntityMatchers.NotMatcher(matcher);
 }
Exemplo n.º 6
0
 public Filter(Appender appender, LogEntityMatcher matcher)
     : base(appender)
 {
     if (matcher == null) throw new ArgumentNullException();
     this._matcher = matcher;
 }