ESimWatcher.Stopped イベント

定義

eSIM ウォッチャーが停止したときに発生します。

Note

この機能は、モバイル ネットワーク オペレーターによる特権アクセス権を持つモバイル オペレーター アプリと 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

適用対象