예제 #1
0
 /// <remarks/>
 public void QuickSearchAsync(string queryText, IdcProperty[] extraProps, object userState) {
     if ((this.QuickSearchOperationCompleted == null)) {
         this.QuickSearchOperationCompleted = new System.Threading.SendOrPostCallback(this.OnQuickSearchOperationCompleted);
     }
     this.InvokeAsync("QuickSearch", new object[] {
                 queryText,
                 extraProps}, this.QuickSearchOperationCompleted, userState);
 }
예제 #2
0
 /// <remarks/>
 public void QuickSearchAsync(string queryText, IdcProperty[] extraProps) {
     this.QuickSearchAsync(queryText, extraProps, null);
 }
예제 #3
0
 /// <remarks/>
 public void NavigationSearchAsync(string queryText, string sortField, string sortOrder, int resultCount, bool resultCountSpecified, int pageNumber, bool pageNumberSpecified, int startRow, bool startRowSpecified, int endRow, bool endRowSpecified, IdcProperty[] extraProps, object userState) {
     if ((this.NavigationSearchOperationCompleted == null)) {
         this.NavigationSearchOperationCompleted = new System.Threading.SendOrPostCallback(this.OnNavigationSearchOperationCompleted);
     }
     this.InvokeAsync("NavigationSearch", new object[] {
                 queryText,
                 sortField,
                 sortOrder,
                 resultCount,
                 resultCountSpecified,
                 pageNumber,
                 pageNumberSpecified,
                 startRow,
                 startRowSpecified,
                 endRow,
                 endRowSpecified,
                 extraProps}, this.NavigationSearchOperationCompleted, userState);
 }
예제 #4
0
 /// <remarks/>
 public void NavigationSearchAsync(string queryText, string sortField, string sortOrder, int resultCount, bool resultCountSpecified, int pageNumber, bool pageNumberSpecified, int startRow, bool startRowSpecified, int endRow, bool endRowSpecified, IdcProperty[] extraProps) {
     this.NavigationSearchAsync(queryText, sortField, sortOrder, resultCount, resultCountSpecified, pageNumber, pageNumberSpecified, startRow, startRowSpecified, endRow, endRowSpecified, extraProps, null);
 }
예제 #5
0
 /// <remarks/>
 public void AdvancedSearchAsync(string queryText, string sortField, string sortOrder, int resultCount, bool resultCountSpecified, IdcProperty[] extraProps, object userState) {
     if ((this.AdvancedSearchOperationCompleted == null)) {
         this.AdvancedSearchOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAdvancedSearchOperationCompleted);
     }
     this.InvokeAsync("AdvancedSearch", new object[] {
                 queryText,
                 sortField,
                 sortOrder,
                 resultCount,
                 resultCountSpecified,
                 extraProps}, this.AdvancedSearchOperationCompleted, userState);
 }
예제 #6
0
 /// <remarks/>
 public void AdvancedSearchAsync(string queryText, string sortField, string sortOrder, int resultCount, bool resultCountSpecified, IdcProperty[] extraProps) {
     this.AdvancedSearchAsync(queryText, sortField, sortOrder, resultCount, resultCountSpecified, extraProps, null);
 }