C1.PivotEngine Assembly / C1.PivotEngine Namespace / C1PivotEngine Class / GetRawData Method / GetRawData(String,String,CancellationToken) Method
Path in the server's file system where DataEngine data is saved in files.
The name of a DataEngine table.
Enables task cancellation.

In This Topic
GetRawData(String,String,CancellationToken) Method
In This Topic
Makes the entire raw source data collection accessible to the server's clients.
Syntax
'Declaration
 
Public Overloads Shared Function GetRawData( _
   ByVal workspace As String, _
   ByVal table As String, _
   ByVal cancelToken As CancellationToken _
) As Task(Of IList)
 

Parameters

workspace
Path in the server's file system where DataEngine data is saved in files.
table
The name of a DataEngine table.
cancelToken
Enables task cancellation.

Return Value

List of source data objects.
Remarks
It is recommended to use paging providing source data to the clients, because a DataEngine table can have a very large number of rows.
See Also