public method O2GTradesTableResponseReader.getGenericRow

Brief

Gets a generic row by its index.

Declaration
C#
O2GRow  getGenericRow (int row)

Parameters
row

The index of the row. The index of the first row is 0.

Details

The method is used to work with an abstract row. The method provides common access to rows in a reader/table independently of a reader/table type. The method can be used for processing table updates in the non-table manager mode or working with tables in the table manager mode.
Note: The returned row contains the current values of fields. The values are not automatically updated. To monitor changes, use IO2GTableListener.onChanged. The row interface is thread-safe. One can use the returned row in different threads without synchronization.

Declared in O2GGenericTableResponseReader

back