RouteBuilderExtension.MapDashboardRoute(IRouteBuilder) Method
OBSOLETE
Use the MapDashboardRoute overload with the controllerName parameter instead. Create the DevExpress.DashboardAspNetCore.DashboardController descendant and pass its name as the controllerName parameter's value. For more information, see the following BC article: https://go.devexpress.com/Dashboard_BC1018632.aspx.
Maps the specified URL route.
Namespace: DevExpress.DashboardAspNetCore
Assembly: DevExpress.Dashboard.v24.1.AspNetCore.dll
NuGet Package: DevExpress.AspNetCore.Dashboard
Declaration
[Obsolete("Use the MapDashboardRoute overload with the controllerName parameter instead. Create the DevExpress.DashboardAspNetCore.DashboardController descendant and pass its name as the controllerName parameter's value. For more information, see the following BC article: https://go.devexpress.com/Dashboard_BC1018632.aspx.", true)]
public static void MapDashboardRoute(
this IRouteBuilder routes
)
Parameters
Name | Type | Description |
---|---|---|
routes | IRouteBuilder | The IRouteBuilder collection to add the route to. |
Remarks
A route prefix is used to handle requests from the client-side DashboardControl. The default prefix is used if you do not specify the routePrefix parameter.
See Also