GuidanceNavigator.UserLocationRestored Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando la posizione dell'utente è stata ripristinata.
Nota
Questa API non è disponibile per tutte le app di Windows. A meno che l'account per sviluppatore non venga effettuato appositamente da Microsoft, le chiamate a questa API avranno esito negativo in fase di esecuzione. Per altre informazioni sullo spazio dei nomi Windows.Services.Maps.Guidance
// Register
event_token UserLocationRestored(TypedEventHandler<GuidanceNavigator, IInspectable const&> const& handler) const;
// Revoke with event_token
void UserLocationRestored(event_token const* cookie) const;
// Revoke with event_revoker
GuidanceNavigator::UserLocationRestored_revoker UserLocationRestored(auto_revoke_t, TypedEventHandler<GuidanceNavigator, IInspectable const&> const& handler) const;
public event TypedEventHandler<GuidanceNavigator,object> UserLocationRestored;
function onUserLocationRestored(eventArgs) { /* Your code */ }
guidanceNavigator.addEventListener("userlocationrestored", onUserLocationRestored);
guidanceNavigator.removeEventListener("userlocationrestored", onUserLocationRestored);
- or -
guidanceNavigator.onuserlocationrestored = onUserLocationRestored;
Public Custom Event UserLocationRestored As TypedEventHandler(Of GuidanceNavigator, Object)
Tipo evento
TypedEventHandler<GuidanceNavigator,IInspectable>