3 writes to _preAttentionWarnings
System.Data (3)
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (3)
3386
_preAttentionWarnings
= null;
3411
_preAttentionWarnings
= _warnings;
3431
_preAttentionWarnings
= null;
7 references to _preAttentionWarnings
System.Data (7)
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (7)
3356
if (
_preAttentionWarnings
!= null) {
3357
count =
_preAttentionWarnings
.Count;
3384
AddErrorsToCollection(
_preAttentionWarnings
, ref allErrors, ref broken);
3406
Debug.Assert(_preAttentionErrors == null &&
_preAttentionWarnings
== null, "Can't store errors for attention because there are already errors stored");
3425
_hasErrorOrWarning = (((_preAttentionErrors != null) && (_preAttentionErrors.Count > 0)) || ((
_preAttentionWarnings
!= null) && (
_preAttentionWarnings
.Count > 0)));
3428
_warnings =
_preAttentionWarnings
;