4 writes to _errors
System.Data (4)
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (4)
3279
_errors
= new SqlErrorCollection();
3379
_errors
= null;
3413
_errors
= null;
3427
_errors
= _preAttentionErrors;
9 references to _errors
System.Data (9)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (2)
5032
_sqlRPCParameterEncryptionReqArray[_currentlyExecutingDescribeParameterEncryptionRPC].errors = stateObj.
_errors
;
5070
_SqlRPCBatchArray[_currentlyExecutingBatch].errors = _stateObj.
_errors
;
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (7)
3278
if (
_errors
== null) {
3281
_errors
.Add(error);
3292
if (
_errors
!= null) {
3293
count =
_errors
.Count;
3377
AddErrorsToCollection(
_errors
, ref allErrors, ref broken);
3410
_preAttentionErrors =
_errors
;
3423
Debug.Assert(
_errors
== null && _warnings == null, "Can't restore errors after attention because there are already other errors");