3 writes to _currentArrayIndex
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlStream.cs (3)
330
_currentArrayIndex
= 0;
368
_currentArrayIndex
++; // We are done reading this chunk, go to next
437
_currentArrayIndex
= ii;
7 references to _currentArrayIndex
System.Data (7)
fx\src\data\System\Data\SqlClient\SqlStream.cs (7)
308
if (
_currentArrayIndex
> 0) {
309
for (int ii = 0 ; ii <
_currentArrayIndex
; ii++) {
362
if (_cachedBytes.Count <=
_currentArrayIndex
) {
367
if (_cachedBytes[
_currentArrayIndex
].Length <= _currentPosition) {
369
if (_cachedBytes.Count >
_currentArrayIndex
) {
376
cb = _cachedBytes[
_currentArrayIndex
].Length - _currentPosition;
379
Array.Copy(_cachedBytes[
_currentArrayIndex
], _currentPosition, buffer, offset, cb);