IDatabase ExtractorEnumerate Table Rows Method
Enumerates a table's row data one row at a time.
Definition
Namespace: OpenDiscoverSDK.Interfaces.Extractors
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2026.2.6.0 (2026.02.06)
Column data for the row as an object array.
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2026.2.6.0 (2026.02.06)
C#
IEnumerable<Object[]> EnumerateTableRows(
TableInfo table,
List<int> columnIndices = null
)Parameters
- table TableInfo
- The table whose rows are to be enumerated (column data extracted one row at a time).
- columnIndices ListInt32 (Optional)
- If null (default value) all row column values are returned in order; if non-null, this list must contain valid zero-offset column indices for the columns that are to be returned (in this case the returned object array will have same length as the number of items in this argumen).
Return Value
IEnumerableObjectColumn data for the row as an object array.