コード例 #1
0
 internal NotMatcher(LogEntityMatcher matcher)
 {
     if (matcher == null)
     {
         throw new ArgumentNullException();
     }
     this._matcher = matcher;
 }
コード例 #2
0
ファイル: Filter.cs プロジェクト: pkgs-at/com.unitystack
 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));
 }
コード例 #4
0
 internal NotMatcher(LogEntityMatcher matcher)
 {
     if (matcher == null) throw new ArgumentNullException();
     this._matcher = matcher;
 }
コード例 #5
0
 public static LogEntityMatcher Not(LogEntityMatcher matcher)
 {
     return new LogEntityMatchers.NotMatcher(matcher);
 }
コード例 #6
0
ファイル: Filter.cs プロジェクト: pkgs-at/com.unitystack
 public Filter(Appender appender, LogEntityMatcher matcher)
     : base(appender)
 {
     if (matcher == null) throw new ArgumentNullException();
     this._matcher = matcher;
 }