MobileBroadbandAccountWatcher.Stopped 事件

定义

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) 

事件类型

Windows 要求

应用功能
cellularDeviceControl cellularDeviceIdentity

注解

可以通过调用 Stop 方法开始停止 MobileBroadbandAccountWatcher 的过程。 当 MobileBroadbandAccountWatcher 完全停止时,将引发 Stopped 事件。

可以使用 Status 属性查询观察程序的状态,以确定观察程序是否由于意外的内部错误条件而中止。

适用于