18 writes to RowError
System.Data.Common (18)
System\Data\Common\DbDataAdapter.cs (4)
1051
dataRow.
RowError
= null;
1679
row.
RowError
+= rowMsg;
1690
row.
RowError
+= message;
1734
dataRow.
RowError
+= message;
System\Data\DataColumn.cs (3)
1694
dr.
RowError
= errorText;
1704
dr.
RowError
= errorText;
1721
rows[i].
RowError
= errorText;
System\Data\DataTable.cs (7)
938
row.
RowError
= (string)rowErrors[rowIndex]!;
2263
targetRow.
RowError
= row.RowError;
2267
targetRow.
RowError
+= " ]:[ " + row.RowError;
3007
targetRow.
RowError
= row.RowError;
3267
targetRow.
RowError
= row.RowError;
5280
dataRow.
RowError
= error;
5284
dataRow.
RowError
+= " ]:[ " + error;
System\Data\ForeignKeyConstraint.cs (1)
191
rows[j].
RowError
= error;
System\Data\UniqueConstraint.cs (1)
235
rows[j].
RowError
= error;
System\Data\XMLDiffLoader.cs (2)
198
row.
RowError
= rowError;
252
row!.
RowError
= rowError;
12 references to RowError
System.Data.Common (12)
System\Data\DataRow.cs (1)
769
/// Clears the errors for the row, including the <see cref='System.Data.DataRow.
RowError
'/>
System\Data\DataRowView.cs (1)
106
string IDataErrorInfo.Error => Row.
RowError
;
System\Data\DataTable.cs (7)
907
rowErrors.Add(rowIndex, row.
RowError
);
2261
if (targetRow.
RowError
.Length == 0)
2263
targetRow.RowError = row.
RowError
;
2267
targetRow.RowError += " ]:[ " + row.
RowError
;
3007
targetRow.RowError = row.
RowError
;
3267
targetRow.RowError = row.
RowError
;
5278
if (dataRow.
RowError
.Length == 0)
System\Data\xmlsaver.cs (3)
2442
if ((row.HasErrors) && (row.
RowError
.Length > 0))
2451
_xmlw.WriteAttributeString(Keywords.DFF, Keywords.MSD_ERROR, Keywords.DFFNS, row.
RowError
);
2781
if ((row.HasErrors) && (row.
RowError
.Length > 0))