4 writes to _hasMoreRowToCopy
System.Data (4)
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (4)
1006
_hasMoreRowToCopy
= t.Result;
1012
_hasMoreRowToCopy
= false;
1014
_hasMoreRowToCopy
= ReadFromRowSource(); //Synchronous calls for DataRows and DataTable won't block. For IDataReader, it may block.
2556
_hasMoreRowToCopy
= true;
5 references to _hasMoreRowToCopy
System.Data (5)
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (5)
2164
for (i = rowsSoFar; (totalRows <= 0 || i < totalRows) &&
_hasMoreRowToCopy
== true; i++) {
2232
while (
_hasMoreRowToCopy
) {
2555
Debug.Assert(
_hasMoreRowToCopy
, "first time it is true, otherwise this method would not have been called.");
2686
if (!
_hasMoreRowToCopy
) { //no rows in the source to copy!
2700
if (!
_hasMoreRowToCopy
) {