Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RouteCalculationResult(RequestResultCode, String, List<BingRouteResult>, List<RouteWaypoint>) Constructor

In This Article

Initializes a new instance of the RouteCalculationResult class with the specified parameters.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v24.2.dll

NuGet Package: DevExpress.Wpf.Map

#Declaration

public RouteCalculationResult(
    RequestResultCode statusCode,
    string faultReason,
    List<BingRouteResult> routeResults,
    List<RouteWaypoint> intermediatePoints
)

#Parameters

Name Type Description
statusCode RequestResultCode

A RequestResultCode object specifying the status code. This value is assigned to the RequestResultBase.ResultCode property.

faultReason String

A String specifying the cause of the fault. This value is assigned to the RequestResultBase.FaultReason property.

routeResults List<BingRouteResult>

A list of BingRouteResult objects specifying route results. This value is assigned to the RouteCalculationResult.RouteResults property.

intermediatePoints List<RouteWaypoint>

A list of RouteWaypoint objects specifying intermediate points. This value is assigned to the RouteCalculationResult.IntermediatePoints property.

See Also