Class
RoutingCompletedEventArgs

Arguments of the RoutingCompleted event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.RadMap.dll

Syntax:

cs-api-definition
public class RoutingCompletedEventArgs : EventArgs

Inheritance: objectEventArgsRoutingCompletedEventArgs

Inherited Members EventArgs.Empty

Constructors

RoutingCompletedEventArgs(Route[])

Initializes a new instance of the RoutingCompletedEventArgs class.

Declaration

cs-api-definition
public RoutingCompletedEventArgs(Route[] routes)

Parameters

routes

Route[]

The routes returned by the service.

RoutingCompletedEventArgs(Route[], object)

Initializes a new instance of the RoutingCompletedEventArgs class.

Declaration

cs-api-definition
public RoutingCompletedEventArgs(Route[] routes, object userData)

Parameters

routes

Route[]

The routes returned by the service.

userData

object

A user-defined object that is passed to the method invoked when the asynchronous operation completes

Properties

Routes

Gets the routing response.

Declaration

cs-api-definition
public Route[] Routes { get; }

Property Value

Route[]

UserData

A user-defined object that is passed to the method invoked when the asynchronous operation completes.

Declaration

cs-api-definition
public object UserData { get; }

Property Value

object