Class RoutingCompletedEventArgs
Arguments of the RoutingCompleted event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.RadMap.dll
Syntax
public class RoutingCompletedEventArgs : EventArgs
Constructors
RoutingCompletedEventArgs(Route)
Initializes a new instance of the RoutingCompletedEventArgs class.
Declaration
[Obsolete("Use the constructor that takes a collection of Route objects instead.")]
public RoutingCompletedEventArgs(Route route)
Parameters
Route
route
The route. |
RoutingCompletedEventArgs(Route, Object)
Initializes a new instance of the RoutingCompletedEventArgs class.
Declaration
[Obsolete("Use the constructor that takes a collection of Route objects instead.")]
public RoutingCompletedEventArgs(Route route, object userData)
Parameters
Route
route
The route. |
System.Object
userData
A user-defined object that is passed to the method invoked when the asynchronous operation completes |
RoutingCompletedEventArgs(Route[])
Initializes a new instance of the RoutingCompletedEventArgs class.
Declaration
public RoutingCompletedEventArgs(Route[] routes)
Parameters
Route[]
routes
The routes returned by the service. |
RoutingCompletedEventArgs(Route[], Object)
Initializes a new instance of the RoutingCompletedEventArgs class.
Declaration
public RoutingCompletedEventArgs(Route[] routes, object userData)
Parameters
Route[]
routes
The routes returned by the service. |
System.Object
userData
A user-defined object that is passed to the method invoked when the asynchronous operation completes |
Properties
Route
Gets the routing response.
Declaration
[Obsolete("Use the Routes property instead.")]
public Route Route { get; }
Property Value
Route
|
Routes
UserData
A user-defined object that is passed to the method invoked when the asynchronous operation completes.
Declaration
public object UserData { get; }
Property Value
System.Object
|