DataRow.ClearErrors Method ()
.NET Framework (current version)
Clears the errors for the row. This includes the RowError and errors set with SetColumnError.
Assembly: System.Data (in System.Data.dll)
Use SetColumnError and GetColumnError to set and return errors for individual columns.
Set the RowError property to set an error that applies to the whole row.
To determine whether any errors exist for the columns collection, use the HasErrors method. Consequently, you can use the GetColumnsInError method to retrieve all the columns with errors.
The following example uses the HasErrors to look for errors. If the row has errors, the GetColumnsInError method returns the array of columns with errors that can then be resolved. The ClearErrors method is then called to clear all errors.
.NET Framework
Available since 1.1
Available since 1.1
Show: