GeofenceMonitor.StatusChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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)
事件类型
TypedEventHandler<GeofenceMonitor,IInspectable>
Windows 要求
应用功能 |
location
|
注解
使用地理围栏时,请使用 GeofenceMonitor 的 StatusChanged 事件监视位置权限的更改,而不是 Geolocator 类中的 StatusChanged 事件。 Disabled 的 GeofenceMonitorStatus 等效于 **Disabled **PositionStatus - 这两者都表示应用没有访问该位置的权限。