9 writes to _pendingData
System.Data (9)
fx\src\data\System\Data\SqlClient\TdsParser.cs (6)
2790
stateObj.
_pendingData
= false;
3858
stateObj.
_pendingData
= false;
7492
_physicalStateObj.
_pendingData
= true;
7522
_physicalStateObj.
_pendingData
= true;
7842
stateObj.
_pendingData
= true;
9141
stateObj.
_pendingData
= true;
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (3)
963
_pendingData
= true;
968
return AsyncHelper.CreateContinuationTask(writePacketTask, () => {
_pendingData
= true; _messageStatus = 0; });
3680
_stateObj.
_pendingData
= _snapshotPendingData;
22 references to _pendingData
System.Data (22)
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (8)
897
if ((!_isClosed) && (parser != null) && (stateObj != null) && (stateObj.
_pendingData
)) {
1119
while (_parser != null && _stateObj != null && _stateObj.
_pendingData
&& !_metaDataConsumed) {
2761
while(_stateObj.
_pendingData
) {
2840
if (_stateObj.
_pendingData
) {
2891
if ( _stateObj.
_pendingData
) {
3177
while (_stateObj.
_pendingData
) {
3203
if (!_stateObj.
_pendingData
) {
3222
while (_stateObj.
_pendingData
&& !_sharedState._dataReady) {
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (3)
721
else if (!parser.MARSOn && parser._physicalStateObj.
_pendingData
) {
724
Debug.Assert(!parser._physicalStateObj.
_pendingData
, "Should not have a busy physicalStateObject at this point!");
873
Debug.Assert(!_parser._physicalStateObj.
_pendingData
, "Upon ResetConnection SqlInternalConnectionTds has pending data.");
fx\src\data\System\Data\SqlClient\TdsParser.cs (7)
653
Debug.Assert(!session.
_pendingData
, "pending data on a pooled MARS session");
1121
if (_physicalStateObj.
_pendingData
) {
2304
Debug.Assert(stateObj.
_pendingData
|| !dataReady, "dataReady is set, but there is no pending data");
2310
while ((stateObj.
_pendingData
&&
2312
(!stateObj.
_pendingData
&& stateObj._attentionSent && !stateObj._attentionReceived));
2324
if (!stateObj.
_pendingData
) {
2797
if (!stateObj.
_pendingData
&& stateObj._hasOpenResult) {
fx\src\data\System\Data\SqlClient\TdsParserSessionPool.cs (1)
202
Debug.Assert(!session.
_pendingData
, "pending data on a pooled session?");
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (3)
588
if (
_pendingData
&& !_attentionSent) {
774
if (
_pendingData
) {
3648
_snapshotPendingData = _stateObj.
_pendingData
;