コード例 #1
0
ファイル: SearchCriteria.cs プロジェクト: timotei/White
 public static SearchCriteria ByNativeProperty(PropertyId automationProperty, bool value)
 {
     return(new SearchCriteria(SearchConditionFactory.CreateForNativeProperty(automationProperty, value)));
 }
コード例 #2
0
ファイル: SearchCriteria.cs プロジェクト: timotei/White
 public virtual SearchCriteria AndNativeProperty(PropertyId automationProperty, object value)
 {
     conditions.Insert(0, SearchConditionFactory.CreateForNativeProperty(automationProperty, value));
     return(this);
 }