次の方法で共有


GeofenceMonitor.StatusChanged イベント

定義

GeofenceMonitor の状態が変更されたときに発生します。

// 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) 

イベントの種類

Windows の要件

アプリの機能
location

注釈

ジオフェンスを使用する場合は、GeofenceMonitor の StatusChanged イベントを使用して、Geolocator クラスの StatusChanged イベントではなく、場所のアクセス許可の変更を監視します。 GeofenceMonitorStatusDisabled は **Disabled **PositionStatus と同じです。どちらも、アプリに場所にアクセスするためのアクセス許可がないことを示します。

適用対象

こちらもご覧ください