public method O2GOffersTableResponseReader.isCellValid

Brief

Checks whether the cell value can be used or not.

Declaration
C#
bool  isCellValid (int row, int column)

Parameters
row

The index of a row. The index must be between 0 and O2GGenericTableResponseReader.Count - 1.

column

The index of a column. The index must be between 0 and O2GTableColumnCollection.Count - 1.

Details

The possible return values are:

true

The cell value in a table has changed since the previous update and is specified in the response. The value can be used.

false

The cell value in a table has not changed since the previous update and is not specified in the response. The value can not be used.

This returned value can be true or false only in the case of the table reader being applied to the TablesUpdates response.

Otherwise, the method returns true.

Declared in O2GGenericTableResponseReader

back