GetHyperCubeContinuousDataAsync Method
Overloads
| GetHyperCubeContinuousDataAsync(String, NxContinuousDataOptions, Boolean) | Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data. | |
| GetHyperCubeContinuousDataAsync(AsyncHandle, String, NxContinuousDataOptions, Boolean) | Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data. | |
| GetHyperCubeContinuousDataAsync<T>(AsyncHandle, Func<Response, T>, String, NxContinuousDataOptions, Boolean) | Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data. | 
GetHyperCubeContinuousDataAsync(String, NxContinuousDataOptions, Boolean)
Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.
Declaration
      Task<GetHyperCubeContinuousDataResult> GetHyperCubeContinuousDataAsync([QixName("qPath")] string path, [QixName("qOptions")] NxContinuousDataOptions options, [QixName("qReverseSort")] bool reverseSort = false)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | path | Path to the definition of the object.
For example,  | 
| NxContinuousDataOptions | options | Defines the data to return. | 
| System.Boolean | reverseSort | If set to true the returned data pages are reverse sorted. Optional. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<GetHyperCubeContinuousDataResult> | 
Remarks
Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.
GetHyperCubeContinuousDataAsync(AsyncHandle, String, NxContinuousDataOptions, Boolean)
Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.
Declaration
      Task<GetHyperCubeContinuousDataResult> GetHyperCubeContinuousDataAsync(AsyncHandle asyncHandle, [QixName("qPath")] string path, [QixName("qOptions")] NxContinuousDataOptions options, [QixName("qReverseSort")] bool reverseSort = false)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | path | Path to the definition of the object.
For example,  | 
| NxContinuousDataOptions | options | Defines the data to return. | 
| System.Boolean | reverseSort | If set to true the returned data pages are reverse sorted. Optional. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<GetHyperCubeContinuousDataResult> | 
Remarks
Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.
GetHyperCubeContinuousDataAsync<T>(AsyncHandle, Func<Response, T>, String, NxContinuousDataOptions, Boolean)
Retrieves and packs compressed hypercube and axis data. It is possible to retrieve specific pages of data.
Declaration
      Task<T> GetHyperCubeContinuousDataAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qPath")] string path, [QixName("qOptions")] NxContinuousDataOptions options, [QixName("qReverseSort")] bool reverseSort = false)
    
  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.
For example,  | 
| NxContinuousDataOptions | options | Defines the data to return. | 
| System.Boolean | reverseSort | If set to true the returned data pages are reverse sorted. Optional. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T | 
Remarks
Binning is done on the time stamp data as well as the date. This means that you can zoom in to a level of granularity as low as seconds.