3 writes to _position
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlSequentialTextReaderSmi.cs (3)
23
_position
= 0;
66
_position
++;
99
_position
+= newCharsRead;
4 references to _position
System.Data (4)
fx\src\data\System\Data\SqlClient\SqlSequentialTextReaderSmi.cs (4)
59
else if (
_position
< _length)
62
int charsRead = ValueUtilsSmi.GetChars_Unchecked(_sink, _getters, _columnIndex,
_position
, tempBuffer, 0, 1);
94
int charsNeeded = (int)Math.Min((long)(count - charsRead), _length -
_position
);
98
int newCharsRead = ValueUtilsSmi.GetChars_Unchecked(_sink, _getters, _columnIndex,
_position
, buffer, index + charsRead, charsNeeded);