GeofenceMonitor.StatusChanged 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.
Generato quando lo stato di GeofenceMonitor è stato modificato.
// Register
event_token StatusChanged(TypedEventHandler<GeofenceMonitor, IInspectable const&> const& handler) const;
// Revoke with event_token
void StatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
GeofenceMonitor::StatusChanged_revoker StatusChanged(auto_revoke_t, TypedEventHandler<GeofenceMonitor, IInspectable const&> const& handler) const;
public event TypedEventHandler<GeofenceMonitor,object> StatusChanged;
function onStatusChanged(eventArgs) { /* Your code */ }
geofenceMonitor.addEventListener("statuschanged", onStatusChanged);
geofenceMonitor.removeEventListener("statuschanged", onStatusChanged);
- or -
geofenceMonitor.onstatuschanged = onStatusChanged;
Public Custom Event StatusChanged As TypedEventHandler(Of GeofenceMonitor, Object)
Tipo evento
TypedEventHandler<GeofenceMonitor,IInspectable>
Requisiti Windows
Funzionalità dell'app |
location
|
Commenti
Quando si usa un recinto virtuale, usare l'evento StatusChanged di GeofenceMonitor per monitorare le modifiche apportate alle autorizzazioni di posizione anziché all'evento StatusChanged dalla classe Geolocator . Un oggetto GeofenceMonitorStatus di Disabled equivale a **Disabled **PositionStatus . Entrambi indicano che l'app non dispone dell'autorizzazione per accedere alla posizione.