Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataRow::ClearErrors Method ()

 

Clears the errors for the row. This includes the RowError and errors set with SetColumnError.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
void ClearErrors()

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft