00001 using System.Collections.Generic; 00002 00003 namespace N2.Collections 00004 { 00008 public class PageFilter : ItemFilter 00009 { 00010 public override bool Match(ContentItem item) 00011 { 00012 return item.IsPage; 00013 } 00014 00015 public static void FilterPages(IList<ContentItem> items) 00016 { 00017 Filter(items, new PageFilter()); 00018 } 00019 } 00020 }