Compartir a través de


GuidanceNavigator.Rerouting Evento

Definición

Se produce cuando se vuelve a enrutar la guía de navegación.

Nota

Esta API no está disponible para todas las aplicaciones de Windows. A menos que Microsoft aprovisione especialmente la cuenta de desarrollador, las llamadas a esta API producirán un error en tiempo de ejecución. Para obtener más información sobre el espacio de nombres Windows.Services.Maps.Guidance, trabaje con su representante del equipo de cuentas de Microsoft.

// Register
event_token Rerouting(TypedEventHandler<GuidanceNavigator, IInspectable const&> const& handler) const;

// Revoke with event_token
void Rerouting(event_token const* cookie) const;

// Revoke with event_revoker
GuidanceNavigator::Rerouting_revoker Rerouting(auto_revoke_t, TypedEventHandler<GuidanceNavigator, IInspectable const&> const& handler) const;
public event TypedEventHandler<GuidanceNavigator,object> Rerouting;
function onRerouting(eventArgs) { /* Your code */ }
guidanceNavigator.addEventListener("rerouting", onRerouting);
guidanceNavigator.removeEventListener("rerouting", onRerouting);
- or -
guidanceNavigator.onrerouting = onRerouting;
Public Custom Event Rerouting As TypedEventHandler(Of GuidanceNavigator, Object) 

Tipo de evento

Se aplica a