Skip to main content
A newer version of this page is available. .

JsonDataSource.FillError Event

Occurs when an attempt to fill the data source fails.

Namespace: DevExpress.DataAccess.Json

Assembly: DevExpress.DataAccess.v20.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.WindowsDesktop.DataAccess

Declaration

public event DataSourceFillErrorEventHandler FillError

Event Data

The FillError event's data class is DataSourceFillErrorEventArgs. The following properties provide information specific to this event:

Property Description
ConnectionName Specifies the name of the JSON data source connection that was used when the FillError event occurred.
Exception Gets the exception that caused the FillError event.
Handled Gets or sets whether the FillError event has been handled.

Remarks

This event occurs when a call to the Fill() method fails to populate the data source with data. Handle this event to process the following exceptions:

  • WebExceptions that occur when the endpoint’s Uri is not accessible.
  • IOExceptions that occur on failed attempts to load JSON data from the file system.
  • JSON data parse errors.

Use the following properties to retrieve the exception details:

The JsonDataSourceException exception occurs instead of the WebException, IOException, and parse errors. Catch this exception as an alternative to the FillError event.

try {
  dataSource.Fill()
}
catch(JsonDataSourceException e) {
  //do something
}

Example

The code sample below creates a new data source, handles the FillError event to to process exceptions, and tries to populate the data source with data.

using DevExpress.DataAccess.Json;
// ...
// Create a new JSON source.
var jsonSource = new UriJsonSource() {
    Uri = new Uri(@"https://invalid.json")
};
// Assign the JSON source to the data source.
var datasource = new JsonDataSource() {
    JsonSource = jsonSource
};
dataSource.FillError += (s, e) => {
    e.Handled = true;
    // Add code that handles the data source fill error here.
};
See Also