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 屬性查詢監看員的狀態,以判斷監看員是否因為非預期的內部錯誤狀況而中止。