MobileBroadbandAccountWatcher.EnumerationCompleted Evento

Definizione

Si verifica al termine dell'enumerazione degli account per il client.

Nota

Questa funzionalità è disponibile solo per le app dell'operatore di telefonia mobile e le app UWP con accesso con privilegi da parte degli operatori di rete mobile.

Se vuoi usare questa API e pubblicare la tua app in Microsoft Store, avrai bisogno di un'approvazione speciale. Per altre informazioni, vedere la sezione Funzionalità con restrizioni nell'argomento Dichiarazioni di funzionalità dell'app .

// Register
event_token EnumerationCompleted(TypedEventHandler<MobileBroadbandAccountWatcher, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
MobileBroadbandAccountWatcher::EnumerationCompleted_revoker EnumerationCompleted(auto_revoke_t, TypedEventHandler<MobileBroadbandAccountWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<MobileBroadbandAccountWatcher,object> EnumerationCompleted;
function onEnumerationCompleted(eventArgs) { /* Your code */ }
mobileBroadbandAccountWatcher.addEventListener("enumerationcompleted", onEnumerationCompleted);
mobileBroadbandAccountWatcher.removeEventListener("enumerationcompleted", onEnumerationCompleted);
- or -
mobileBroadbandAccountWatcher.onenumerationcompleted = onEnumerationCompleted;
Public Custom Event EnumerationCompleted As TypedEventHandler(Of MobileBroadbandAccountWatcher, Object) 

Tipo evento

Requisiti Windows

Funzionalità dell'app
cellularDeviceControl cellularDeviceIdentity

Commenti

Quando il watcher viene avviato, enumera tutti gli account esistenti (generando un evento AccountAdded per ogni account). È possibile utilizzare l'evento EnumerationCompleted per determinare al termine dell'operazione di enumerazione. Successivamente, tutti gli eventi in corso sono nuovi.

Si applica a