MobileBroadbandAccountWatcher.Stopped 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在 MobileBroadbandAccountWatcher 已停止时发生。
注意
此功能仅适用于移动运营商应用和由移动网络运营商授予特权访问权限的 UWP 应用。
如果要使用此 API 并将应用发布到 Microsoft Store,则需要获得特殊批准。 有关详细信息,请参阅应用功能声明主题中的受限功能部分。
// Register
event_token Stopped(TypedEventHandler<MobileBroadbandAccountWatcher, IInspectable const&> const& handler) const;
// Revoke with event_token
void Stopped(event_token const* cookie) const;
// Revoke with event_revoker
MobileBroadbandAccountWatcher::Stopped_revoker Stopped(auto_revoke_t, TypedEventHandler<MobileBroadbandAccountWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<MobileBroadbandAccountWatcher,object> Stopped;
function onStopped(eventArgs) { /* Your code */ }
mobileBroadbandAccountWatcher.addEventListener("stopped", onStopped);
mobileBroadbandAccountWatcher.removeEventListener("stopped", onStopped);
- or -
mobileBroadbandAccountWatcher.onstopped = onStopped;
Public Custom Event Stopped As TypedEventHandler(Of MobileBroadbandAccountWatcher, Object)
事件类型
TypedEventHandler<MobileBroadbandAccountWatcher,IInspectable>
Windows 要求
应用功能 |
cellularDeviceControl
cellularDeviceIdentity
|
注解
可以通过调用 Stop 方法开始停止 MobileBroadbandAccountWatcher 的过程。 当 MobileBroadbandAccountWatcher 完全停止时,将引发 Stopped 事件。
可以使用 Status 属性查询观察程序的状态,以确定观察程序是否由于意外的内部错误条件而中止。