18 writes to RowError
System.Data (18)
fx\src\data\System\Data\Common\DbDataAdapter.cs (4)
880
dataRow.
RowError
= null; // MDAC 67185
1421
row.
RowError
+= rowMsg;
1430
row.
RowError
+= message; // MDAC 65808
1467
dataRow.
RowError
+= message; // MDAC 65808
fx\src\data\System\Data\DataColumn.cs (3)
1640
dr.
RowError
= errorText;
1650
dr.
RowError
= errorText;
1665
rows[i].
RowError
= errorText;
fx\src\data\System\Data\DataTable.cs (7)
837
row.
RowError
= (string) rowErrors[rowIndex];
2090
targetRow.
RowError
= row.RowError;
2092
targetRow.
RowError
+= " ]:[ " + row.RowError;
2763
targetRow.
RowError
= row.RowError;
2979
targetRow.
RowError
= row.RowError;
4717
dataRow.
RowError
= error;
4720
dataRow.
RowError
+= " ]:[ " + error ;
fx\src\data\System\Data\ForeignKeyConstraint.cs (1)
208
rows[j].
RowError
= error;
fx\src\data\System\Data\UniqueConstraint.cs (1)
222
rows[j].
RowError
= error;
fx\src\data\System\Data\XMLDiffLoader.cs (2)
188
row.
RowError
= rowError;
235
row.
RowError
= rowError;
12 references to RowError
System.Data (12)
fx\src\data\System\Data\DataRow.cs (1)
702
/// Clears the errors for the row, including the <see cref='System.Data.DataRow.
RowError
'/>
fx\src\data\System\Data\DataRowView.cs (1)
121
return Row.
RowError
;
fx\src\data\System\Data\DataTable.cs (7)
811
rowErrors.Add(rowIndex, row.
RowError
);
2089
if (targetRow.
RowError
.Length == 0) {
2090
targetRow.RowError = row.
RowError
;
2092
targetRow.RowError += " ]:[ " + row.
RowError
;
2763
targetRow.RowError = row.
RowError
;
2979
targetRow.RowError = row.
RowError
;
4716
if (dataRow.
RowError
.Length == 0) { // WebData 112272, append the row error
fx\src\data\System\Data\xmlsaver.cs (3)
2108
if ((row.HasErrors) && (row.
RowError
.Length > 0)) {
2115
_xmlw.WriteAttributeString( Keywords.DFF, Keywords.MSD_ERROR, Keywords.DFFNS, row.
RowError
);
2405
if ((row.HasErrors) && (row.
RowError
.Length > 0))