Click or drag to resize
IAppGetTableDataAsyncT Method (AsyncHandle, FuncResponse, T, Int32, Int32, Boolean, String)

Retrieves the data of a specific table.

Namespace: Qlik.Engine
Assembly: Qlik.Engine (in Qlik.Engine.dll) Version: 2.1.0.0+Build:7.origin/release/ms13
Syntax
Task<T> GetTableDataAsync<T>(
	AsyncHandle asyncHandle,
	Func<Response, T> onResult,
	int offset,
	int rows,
	bool syntheticMode,
	string tableName
)

Parameters

asyncHandle
Type: Qlik.EngineAsyncHandle
Handle to asynchronous method request
onResult
Type: SystemFuncResponse, T
Continuation function
offset
Type: SystemInt32
Position from the top, starting from 0. If the offset is set to 0, the rows starting from the position/index 0 are showed.
rows
Type: SystemInt32
Number of rows to show.
syntheticMode
Type: SystemBoolean
If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any).
tableName
Type: SystemString
Name of the table.

Type Parameters

T

Return Value

Type: TaskT
See Also