Skip to main content
All docs
V25.1
  • RouteBuilderExtension.MapDashboardRoute(IRouteBuilder, String, String) Method

    Maps the specified URL route and sets a prefix and a controller name.

    Namespace: DevExpress.DashboardAspNetCore

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

    NuGet Package: DevExpress.AspNetCore.Dashboard

    Declaration

    public static void MapDashboardRoute(
        this IRouteBuilder routeBuilder,
        string routePrefix,
        string controllerName
    )

    Parameters

    Name Type Description
    routeBuilder IRouteBuilder

    The IRouteBuilder collection to add the route to.

    routePrefix String

    A String value that specifies a route prefix.

    controllerName String

    A String value that specifies the controller name.

    Remarks

    A route prefix is used to handle requests from the client-side DashboardControl. Use the following properties in the client applications to specify the endpoint:

    See Also