GetTableDataAsync Method
Overloads
GetTableDataAsync(Int32, Int32, Boolean, String) |
Retrieves the data of a specific table. |
|
GetTableDataAsync(AsyncHandle, Int32, Int32, Boolean, String) |
Retrieves the data of a specific table. |
|
GetTableDataAsync<T>(AsyncHandle, Func<Response, T>, Int32, Int32, Boolean, String) |
Retrieves the data of a specific table. |
GetTableDataAsync(Int32, Int32, Boolean, String)
Retrieves the data of a specific table.
Declaration
Task<IEnumerable<TableRow>> GetTableDataAsync([QixName("qOffset")] int offset, [QixName("qRows")] int rows, [QixName("qSyntheticMode")] bool syntheticMode, [QixName("qTableName")] string tableName)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | offset |
Position from the top, starting from 0. If the offset is set to 0, the rows starting from the position/index 0 are shown. |
System.Int32 | rows |
Number of rows to show. |
System.Boolean | syntheticMode |
If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any). |
System.String | tableName |
Name of the table. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<TableRow>> |
GetTableDataAsync(AsyncHandle, Int32, Int32, Boolean, String)
Retrieves the data of a specific table.
Declaration
Task<IEnumerable<TableRow>> GetTableDataAsync(AsyncHandle asyncHandle, [QixName("qOffset")] int offset, [QixName("qRows")] int rows, [QixName("qSyntheticMode")] bool syntheticMode, [QixName("qTableName")] string tableName)
Parameters
Type | Name | Description |
---|---|---|
AsyncHandle | asyncHandle |
Handle to asynchronous method request |
System.Int32 | offset |
Position from the top, starting from 0. If the offset is set to 0, the rows starting from the position/index 0 are shown. |
System.Int32 | rows |
Number of rows to show. |
System.Boolean | syntheticMode |
If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any). |
System.String | tableName |
Name of the table. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<TableRow>> |
GetTableDataAsync<T>(AsyncHandle, Func<Response, T>, Int32, Int32, Boolean, String)
Retrieves the data of a specific table.
Declaration
Task<T> GetTableDataAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qOffset")] int offset, [QixName("qRows")] int rows, [QixName("qSyntheticMode")] bool syntheticMode, [QixName("qTableName")] string tableName)
Parameters
Type | Name | Description |
---|---|---|
AsyncHandle | asyncHandle |
Handle to asynchronous method request |
System.Func<Response, T> | onResult |
Continuation function |
System.Int32 | offset |
Position from the top, starting from 0. If the offset is set to 0, the rows starting from the position/index 0 are shown. |
System.Int32 | rows |
Number of rows to show. |
System.Boolean | syntheticMode |
If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any). |
System.String | tableName |
Name of the table. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<T> |
Type Parameters
Name | Description |
---|---|
T |
Did this page help you?
If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!