GetListObjectDataAsync Method
Overloads
| GetListObjectDataAsync(String, IEnumerable<NxPage>) | 
             Retrieves the values of a list object. A data set is returned.  | 
        
      
    |
| GetListObjectDataAsync(AsyncHandle, String, IEnumerable<NxPage>) | 
             Retrieves the values of a list object. A data set is returned.  | 
        
      
    |
| GetListObjectDataAsync<T>(AsyncHandle, Func<Response, T>, String, IEnumerable<NxPage>) | 
             Retrieves the values of a list object. A data set is returned.  | 
        
      
    
GetListObjectDataAsync(String, IEnumerable<NxPage>)
Retrieves the values of a list object.
A data set is returned.
Declaration
      public Task<IEnumerable<NxDataPage>> GetListObjectDataAsync([QixName("qPath")] string path, [QixName("qPages")] IEnumerable<NxPage> pages)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | path | 
           Path to the definition of the object to be selected.
For example,   | 
      
| System.Collections.Generic.IEnumerable<NxPage> | pages | 
           Array of pages you are interested in.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<NxDataPage>> | 
Implements
GetListObjectDataAsync(AsyncHandle, String, IEnumerable<NxPage>)
Retrieves the values of a list object.
A data set is returned.
Declaration
      public Task<IEnumerable<NxDataPage>> GetListObjectDataAsync(AsyncHandle asyncHandle, [QixName("qPath")] string path, [QixName("qPages")] IEnumerable<NxPage> pages)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.String | path | 
           Path to the definition of the object to be selected.
For example,   | 
      
| System.Collections.Generic.IEnumerable<NxPage> | pages | 
           Array of pages you are interested in.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<NxDataPage>> | 
Implements
GetListObjectDataAsync<T>(AsyncHandle, Func<Response, T>, String, IEnumerable<NxPage>)
Retrieves the values of a list object.
A data set is returned.
Declaration
      public Task<T> GetListObjectDataAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qPath")] string path, [QixName("qPages")] IEnumerable<NxPage> pages)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.Func<Response, T> | onResult | 
           Continuation function  | 
      
| System.String | path | 
           Path to the definition of the object to be selected.
For example,   | 
      
| System.Collections.Generic.IEnumerable<NxPage> | pages | 
           Array of pages you are interested in.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |