Skip to main content Skip to complementary content

GetTableDataAsync Method

Overloads

GetTableDataAsync(Int32, Int32, Boolean, String)

Retrieves the data of a specific table.

Declaration

      public 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>>

Implements

GetTableDataAsync(AsyncHandle, Int32, Int32, Boolean, String)

Retrieves the data of a specific table.

Declaration

      public 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>>

Implements

GetTableDataAsync<T>(AsyncHandle, Func<Response, T>, Int32, Int32, Boolean, String)

Retrieves the data of a specific table.

Declaration

      public 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

Implements

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!