Example #1
0
        public bool Matches(SynchronizableObject obj)
        {
            foreach (IFilter filter in filters) {
                if (!filter.Matches(obj))
                    return false;
            }

            return true;
        }
 public GenericPropertyCollection(SynchronizableObject obj)
 {
     this.syncObject = obj;
 }
Example #3
0
 public bool Matches(SynchronizableObject obj)
 {
     return !filter.Matches(obj);
 }