'Declaration Public Event FillError As FillErrorEventHandler
public event FillErrorEventHandler FillError
Event Data
The event handler receives an argument of type FillErrorEventArgs containing data related to this event. The following FillErrorEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Continue | |
DataTable | |
Errors | |
Values |
Remarks
A System.Data.FillErrorEventArgs object is passed to delegate, so you can determine what DbDataTable object has raised an error, what errors are being handled, what are the values for the row being updated when the error occurred, and whether to continue the execution. For more information refer to MSDN topic System.Data.FillErrorEventArgs.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also