コード例 #1
0
ファイル: CompositeFilter.cs プロジェクト: pjdennis/fubumvc
 // TODO -- unit test for this
 public bool MatchesAll(T target)
 {
     return(Includes.MatchesAll(target) && !Excludes.MatchesAny(target));
 }
コード例 #2
0
 public bool MatchesAll(T target)
 {
     return(Includes.MatchesAll(target) && Excludes.DoesNotMatchAny(target));
 }