次の方法で共有


ESimWatcher.Updated イベント

定義

デバイス上の ESim が更新されたときに発生します。

注意

この機能は、モバイル ネットワーク オペレーターによる特権アクセス権を持つモバイル オペレーター アプリと UWP アプリでのみ使用できます。

この API を使用してアプリを Microsoft Store に発行する場合は、カスタム機能 Microsoft.eSIMManagement_8wekyb3d8bbweを使用するために特別な承認を要求する必要があります。 詳細については、「 カスタム機能」を参照してください。

// Register
event_token Updated(TypedEventHandler<ESimWatcher, ESimUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
ESimWatcher::Updated_revoker Updated(auto_revoke_t, TypedEventHandler<ESimWatcher, ESimUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<ESimWatcher,ESimUpdatedEventArgs> Updated;
function onUpdated(eventArgs) { /* Your code */ }
eSimWatcher.addEventListener("updated", onUpdated);
eSimWatcher.removeEventListener("updated", onUpdated);
- or -
eSimWatcher.onupdated = onUpdated;
Public Custom Event Updated As TypedEventHandler(Of ESimWatcher, ESimUpdatedEventArgs) 

イベントの種類

Windows の要件

アプリの機能
Microsoft.eSIMManagement_8wekyb3d8bbwe

適用対象