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