Occurs when an error is detected during a fill operation.
Visual Basic
Public Event FillError As FillErrorEventHandler
C#
public event FillErrorEventHandler FillError;
The FillError event allows you to determine whether the fill operation should continue after the error occurs.
Examples of when the FillError event might occur are:
The data being added to a DataSet cannot be converted to a common language runtime type without losing precision.
The row being added contains data that violates a Constraint that must be enforced on a DataColumn in the DataSet.
To process row fill error events, you must create a System.Data.FillErrorEventHandler delegate and attach it to this event.