共用方式為


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事件。 Disabled 的 GeofenceMonitorStatus相當於 **Disabled **PositionStatus - 兩者都表示應用程式沒有存取位置的許可權。

適用於

另請參閱