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

DashboardExtractDataSource.DriverName Property

Gets or sets a custom driver used to write data to/read data from the current data extract.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v18.2.Core.dll

Declaration

[DefaultValue(null)]
[Browsable(false)]
public string DriverName { get; set; }

Property Value

Type Default Description
String *null*

An object implementing the ICustomExtractDriver interface that specifies a custom driver.

Remarks

By default, the DashboardExtractDataSource stores data within a file. If necessary, you add a custom logic for writing/reading extract data by implementing the ICustomExtractDriver interface. After you have implemented a custom driver, you can use it in two ways.

Note

Note that the value of DriverName is saved to the dashboard XML definition. This allows you to determine the driver name when opening the dashboard supplied with data using DashboardExtractDataSource with a custom driver.

See Also