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

适用于