RouteBuilderExtension.MapDashboardRoute(IRouteBuilder, String, String, String[]) Method
Maps the specified URL route and sets a prefix, controller name and namespaces.
Namespace: DevExpress.DashboardAspNetCore
Assembly: DevExpress.Dashboard.v24.1.AspNetCore.dll
NuGet Package: DevExpress.AspNetCore.Dashboard
Declaration
public static void MapDashboardRoute(
this IRouteBuilder routeBuilder,
string routePrefix,
string controllerName,
string[] namespaces
)
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. |
namespaces | String[] | A set of namespaces for the application. |
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:
- Client app with DashboardControl: DashboardControlOptions.endpoint
- ASP.NET Core Razor app: DashboardBackendOptionsBuilder.Uri
- ASP.NET MVC Razor app: DashboardBackendOptions.Uri
See Also