Go to the documentation of this file.00001 using System;
00002 using System.Collections.Generic;
00003 using System.Text;
00004
00005 namespace N2.Collections
00006 {
00010 public class NullFilter : ItemFilter
00011 {
00012 public override bool Match(ContentItem item)
00013 {
00014 return true;
00015 }
00016 }
00017 }