GetHyperCubeStackDataAsync Method
Overloads
| GetHyperCubeStackDataAsync(String, IEnumerable<NxPage>, Int32) | Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data. | |
| GetHyperCubeStackDataAsync(AsyncHandle, String, IEnumerable<NxPage>, Int32) | Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data. | |
| GetHyperCubeStackDataAsync<T>(AsyncHandle, Func<Response, T>, String, IEnumerable<NxPage>, Int32) | Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data. | 
GetHyperCubeStackDataAsync(String, IEnumerable<NxPage>, Int32)
Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.
Declaration
      Task<IEnumerable<NxStackPage>> GetHyperCubeStackDataAsync([QixName("qPath")] string path, [QixName("qPages")] IEnumerable<NxPage> pages, [QixName("qMaxNbrCells")] int maxNbrCells = 10000)
    
  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 to retrieve. | 
| System.Int32 | maxNbrCells | Maximum number of cells at outer level. The default value is 10 000. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<NxStackPage>> | 
Remarks
This method works for a hypercube in DATA_MODE_PIVOT_STACK.
GetHyperCubeStackDataAsync(AsyncHandle, String, IEnumerable<NxPage>, Int32)
Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.
Declaration
      Task<IEnumerable<NxStackPage>> GetHyperCubeStackDataAsync(AsyncHandle asyncHandle, [QixName("qPath")] string path, [QixName("qPages")] IEnumerable<NxPage> pages, [QixName("qMaxNbrCells")] int maxNbrCells = 10000)
    
  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 to retrieve. | 
| System.Int32 | maxNbrCells | Maximum number of cells at outer level. The default value is 10 000. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<NxStackPage>> | 
Remarks
This method works for a hypercube in DATA_MODE_PIVOT_STACK.
GetHyperCubeStackDataAsync<T>(AsyncHandle, Func<Response, T>, String, IEnumerable<NxPage>, Int32)
Retrieves the values of a stacked pivot table. It is possible to retrieve specific pages of data.
Declaration
      Task<T> GetHyperCubeStackDataAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qPath")] string path, [QixName("qPages")] IEnumerable<NxPage> pages, [QixName("qMaxNbrCells")] int maxNbrCells = 10000)
    
  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 to retrieve. | 
| System.Int32 | maxNbrCells | Maximum number of cells at outer level. The default value is 10 000. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T | 
Remarks
This method works for a hypercube in DATA_MODE_PIVOT_STACK.