Skip to main content
All docs
V25.1
  • DxBackendOptions Class

    Contains options that allow you to configure the Dashboard component’s backend.

    Namespace: DevExpress.DashboardBlazor

    Assembly: DevExpress.Dashboard.v25.1.Blazor.dll

    NuGet Package: DevExpress.Blazor.Dashboard

    Declaration

    public class DxBackendOptions :
        DxSettingsComponent

    Remarks

    Use the RequestHttpHeaders property to specify HTTP headers that are sent to the server:

    <DxDashboard style="height: 800px;" Endpoint="api/dashboard">
        <DxBackendOptions RequestHttpHeaders="@headers"></DxBackendOptions>
    </DxDashboard>
    
    @code {
        public Dictionary<string, string> headers = new Dictionary<string, string>() { { "Auth", "AuthToken123" } };
    }
    

    Inheritance

    Object
    ComponentBase
    DevExpress.DashboardBlazor.Native.DxSettingsComponent
    DxBackendOptions
    See Also