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

ExtractDriverStorage.RegisterCustomDriver(String, ICustomExtractDriver) Method

Registers a custom driver within an ExtractDriverStorage.

Namespace: DevExpress.DashboardCommon

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

Declaration

public static void RegisterCustomDriver(
    string name,
    ICustomExtractDriver driver
)

Parameters

Name Type Description
name String

A String value that specifies the driver name.

driver ICustomExtractDriver

An object implementing the ICustomExtractDriver interface that specifies a custom driver used to write data to/read data from a data extract.

Remarks

To use the registered custom driver for the specific data extract, assign the driver name (the name parameter in the RegisterCustomDriver method) to the DashboardExtractDataSource.DriverName property.

See Also