Skip to main content

IDashboardDataSource.IsServerModeSupported Property

Gets whether the current data source supports server-side data processing.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

[Browsable(false)]
bool IsServerModeSupported { get; }

Property Value

Type Description
Boolean

true, if the current data source supports server-side data processing; otherwise, false.

Remarks

Note that an SQL Data Source can load data from XML files or use a direct database connection and it is impossible to determine whether the server mode is supported until the connection is opened and the data source is filled with data. Since data sources are not yet filled with data when the dashboard is deserialized from XML, the IsServerModeSupported property returns false for DashboardSqlDataSource.

See Also