Skip to main content

BingRouteCalculatedEventArgs(RouteCalculationResult, Exception, Boolean, Object) Constructor

Initializes a new instance of the BingRouteCalculatedEventArgs class with the specified settings.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v25.1.dll

NuGet Package: DevExpress.Win.Map

Declaration

public BingRouteCalculatedEventArgs(
    RouteCalculationResult calculationResult,
    Exception error,
    bool cancelled,
    object userState
)

Parameters

Name Type Description
calculationResult RouteCalculationResult

A RouteCalculationResult object specifying the result. This value is assigned to the BingRouteCalculatedEventArgs.CalculationResult property.

error Exception

A Exception object specifying the error occurred during the asynchronous operation. This value is assigned to the Error property.

cancelled Boolean

A Boolean value indicating whether the asynchronous operation was canceled. This value is assigned to the Cancelled property.

userState Object

A Object that is the optional user-supplied state object passed to the RunWorkerAsync method. This value is assigned to the UserState property.

See Also