Esempio n. 1
0
 public virtual bool MatchesPredicate(PropertyFilterPredicate predicate)
 {
     if (predicate == null)
     {
         return(false);
     }
     if (!predicate.Match(this.DisplayName))
     {
         return(predicate.Match(this.PropertyType.Name));
     }
     return(true);
 }
Esempio n. 2
0
 public abstract bool MatchesPredicate(PropertyFilterPredicate predicate);