dashboard-devexpress-dot-dashboardwin-dot-dashboardviewer-2bc12009.md
Specifies the IDBConnectionInterceptor object for the Dashboard Viewer control.
Namespace : DevExpress.DashboardWin
Assembly : DevExpress.Dashboard.v25.2.Win.dll
NuGet Package : DevExpress.Win.Dashboard
[Browsable(false)]
[DefaultValue(null)]
public IDBConnectionInterceptor CustomDBConnectionInterceptor { get; set; }
<DefaultValue(Nothing)>
<Browsable(False)>
Public Property CustomDBConnectionInterceptor As IDBConnectionInterceptor
| Type | Default | Description |
|---|---|---|
| IDBConnectionInterceptor | null |
A IDBConnectionInterceptor object.
|
Implement IDBConnectionInterceptor to intercept, modify, and/or suppress SQL operations. The list includes low-level database operations such as executing a command or setting a key-value pair in a session context. Once the connection is open, you can store values in the session context and execute any request.
Assign an object that implements the IDBConnectionInterceptor interface to CustomDBConnectionInterceptor to register the interceptor in the Dashboard control.
See Also