8 references to RecordCount
System.Data (8)
fx\src\data\System\Data\DataView.cs (3)
301return (((null != index) ? index.RecordCount : 0) + ((null != addNewRow) ? 1 : 0)); 1266if (recordIndex == index.RecordCount) 1297if (addNewRow != null && index.RecordCount == 0) { // Microsoft : 83032 Clear the newly added row as the underlying index is reset.
fx\src\data\System\Data\Select.cs (5)
458if (index.RecordCount == 0) 463range = new Range(0, index.RecordCount-1); 633int hi = index.RecordCount - 1; 647int hi = index.RecordCount - 1; 661return new Range(0, index.RecordCount-1);