New to Telerik UI for WinFormsStart a free 30-day trial

Arguments of the RoutingCompleted event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.RadMap.dll

Syntax:

C#
[Obsolete("This class relies on the Bing Maps Telerik provider. Microsoft is retiring Bing Maps, and support for this provider is being discontinued. Please migrate to AzureMapProvider. This class is scheduled for removal in 2028 Q3.")]
public class RoutingCompletedEventArgs : EventArgs

Inheritance: objectEventArgsRoutingCompletedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the RoutingCompletedEventArgs class.

C#
public RoutingCompletedEventArgs(Route[] routes, object userData)
Parameters:routesRoute[]

The routes returned by the service.

userDataobject

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

Initializes a new instance of the RoutingCompletedEventArgs class.

C#
public RoutingCompletedEventArgs(Route[] routes)
Parameters:routesRoute[]

The routes returned by the service.

Properties

Routes

Route[]

Gets the routing response.

C#
public Route[] Routes { get; }

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

C#
public object UserData { get; }