SearchAssociationsAsync Method
Overloads
| SearchAssociationsAsync(SearchCombinationOptions, IEnumerable<String>, SearchPage) | Returns the search matches for one or more search terms. The search results depend on the search context. 
               SearchMatchCombinationsPlease refer to Engine API reference for table definition. | |
| SearchAssociationsAsync(AsyncHandle, SearchCombinationOptions, IEnumerable<String>, SearchPage) | Returns the search matches for one or more search terms. The search results depend on the search context. 
               SearchMatchCombinationsPlease refer to Engine API reference for table definition. | |
| SearchAssociationsAsync<T>(AsyncHandle, Func<Response, T>, SearchCombinationOptions, IEnumerable<String>, SearchPage) | Returns the search matches for one or more search terms. The search results depend on the search context. 
               SearchMatchCombinationsPlease refer to Engine API reference for table definition. | 
SearchAssociationsAsync(SearchCombinationOptions, IEnumerable<String>, SearchPage)
Returns the search matches for one or more search terms.
The search results depend on the search context.
      SearchCombinationOptions
    
SearchMatchCombinations
Please refer to Engine API reference for table definition.
Declaration
      [Obsolete("Use _SearchResults_ method instead")]
Task<SearchAssociationResult> SearchAssociationsAsync([QixName("qOptions")] SearchCombinationOptions options, [QixName("qTerms")] IEnumerable<string> terms, [QixName("qPage")] SearchPage page)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| SearchCombinationOptions | options | Information about the search fields and the search context. | 
| System.Collections.Generic.IEnumerable<System.String> | terms | List of terms to search for. | 
| SearchPage | page | Array of pages to retrieve. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<SearchAssociationResult> | 
SearchAssociationsAsync(AsyncHandle, SearchCombinationOptions, IEnumerable<String>, SearchPage)
Returns the search matches for one or more search terms.
The search results depend on the search context.
      SearchCombinationOptions
    
SearchMatchCombinations
Please refer to Engine API reference for table definition.
Declaration
      [Obsolete("Use _SearchResults_ method instead")]
Task<SearchAssociationResult> SearchAssociationsAsync(AsyncHandle asyncHandle, [QixName("qOptions")] SearchCombinationOptions options, [QixName("qTerms")] IEnumerable<string> terms, [QixName("qPage")] SearchPage page)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| SearchCombinationOptions | options | Information about the search fields and the search context. | 
| System.Collections.Generic.IEnumerable<System.String> | terms | List of terms to search for. | 
| SearchPage | page | Array of pages to retrieve. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<SearchAssociationResult> | 
SearchAssociationsAsync<T>(AsyncHandle, Func<Response, T>, SearchCombinationOptions, IEnumerable<String>, SearchPage)
Returns the search matches for one or more search terms.
The search results depend on the search context.
      SearchCombinationOptions
    
SearchMatchCombinations
Please refer to Engine API reference for table definition.
Declaration
      [Obsolete("Use _SearchResults_ method instead")]
Task<T> SearchAssociationsAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qOptions")] SearchCombinationOptions options, [QixName("qTerms")] IEnumerable<string> terms, [QixName("qPage")] SearchPage page)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
| SearchCombinationOptions | options | Information about the search fields and the search context. | 
| System.Collections.Generic.IEnumerable<System.String> | terms | List of terms to search for. | 
| SearchPage | page | Array of pages to retrieve. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |