Esempio n. 1
0
        /// <summary>
        /// Adds a property filter to the filter.
        /// A property filter contains the name of the
        /// property to filter on, plus the value of
        /// the property to match
        ///
        /// the name of the property to filter on
        /// the value of the property to match
        /// </summary>
        public void AddFilter(string property, string matchValue)
        {
            FilterProperty filterProperty = new FilterProperty(property, matchValue);

            _FilterList.Add(filterProperty);
        }
Esempio n. 2
0
 public int Add(FilterProperty fp)
 {
     return(List.Add(fp));
 }