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 事件。 DisabledGeofenceMonitorStatus 等效于 **Disabled **PositionStatus - 这两者都表示应用没有访问该位置的权限。

适用于

另请参阅