Exemplo n.º 1
0
 public static SearchCriteria ByNativeProperty(PropertyId automationProperty, bool value)
 {
     return(new SearchCriteria(SearchConditionFactory.CreateForNativeProperty(automationProperty, value)));
 }
Exemplo n.º 2
0
 public virtual SearchCriteria AndNativeProperty(PropertyId automationProperty, object value)
 {
     conditions.Insert(0, SearchConditionFactory.CreateForNativeProperty(automationProperty, value));
     return(this);
 }