3 writes to _preAttentionErrors
System.Data (3)
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (3)
3385
_preAttentionErrors
= null;
3410
_preAttentionErrors
= _errors;
3430
_preAttentionErrors
= null;
7 references to _preAttentionErrors
System.Data (7)
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (7)
3341
if (
_preAttentionErrors
!= null) {
3342
count =
_preAttentionErrors
.Count;
3383
AddErrorsToCollection(
_preAttentionErrors
, 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)));
3427
_errors =
_preAttentionErrors
;