示例#1
0
 public FilterChecker()
 {
     this.check_data = new DataTable();
     this.check_data.Columns.Add("field_id", typeof(Int64));
     this.check_data.Columns.Add("text", typeof(String));
     this.check_data.Columns.Add("date", typeof(Int64));
     this.check_data.Columns.Add("numeric", typeof(Int64));
     this.filters = new FilterRuleCollection();
 }
示例#2
0
 public FilterChecker(FilterRuleCollection filters)
     : this()
 {
     this.filters.Dispose();
     this.filters = filters;
 }
示例#3
0
 public FilterRuleEnumerator(FilterRuleCollection f)
 {
     this.f = f;
 }