ESimWatcher.Stopped 事件

定义

eSIM 观察程序停止时发生。

注意

此功能仅适用于移动运营商应用和由移动网络运营商授予特权访问权限的 UWP 应用。

如果要使用此 API 并将应用发布到 Microsoft Store,则需要请求特殊批准才能 Microsoft.eSIMManagement_8wekyb3d8bbwe使用自定义功能。 有关详细信息,请参阅 自定义功能

// Register
event_token Stopped(TypedEventHandler<ESimWatcher, IInspectable const&> const& handler) const;

// Revoke with event_token
void Stopped(event_token const* cookie) const;

// Revoke with event_revoker
ESimWatcher::Stopped_revoker Stopped(auto_revoke_t, TypedEventHandler<ESimWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<ESimWatcher,object> Stopped;
function onStopped(eventArgs) { /* Your code */ }
eSimWatcher.addEventListener("stopped", onStopped);
eSimWatcher.removeEventListener("stopped", onStopped);
- or -
eSimWatcher.onstopped = onStopped;
Public Custom Event Stopped As TypedEventHandler(Of ESimWatcher, Object) 

事件类型

Windows 要求

应用功能
Microsoft.eSIMManagement_8wekyb3d8bbwe

适用于