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