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