RemoteSystemSessionParticipantWatcher.EnumerationCompleted Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Generato dopo il completamento dell'enumerazione iniziale dei partecipanti.
// Register
event_token EnumerationCompleted(TypedEventHandler<RemoteSystemSessionParticipantWatcher, IInspectable const&> const& handler) const;
// Revoke with event_token
void EnumerationCompleted(event_token const* cookie) const;
// Revoke with event_revoker
RemoteSystemSessionParticipantWatcher::EnumerationCompleted_revoker EnumerationCompleted(auto_revoke_t, TypedEventHandler<RemoteSystemSessionParticipantWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<RemoteSystemSessionParticipantWatcher,object> EnumerationCompleted;
function onEnumerationCompleted(eventArgs) { /* Your code */ }
remoteSystemSessionParticipantWatcher.addEventListener("enumerationcompleted", onEnumerationCompleted);
remoteSystemSessionParticipantWatcher.removeEventListener("enumerationcompleted", onEnumerationCompleted);
- or -
remoteSystemSessionParticipantWatcher.onenumerationcompleted = onEnumerationCompleted;
Public Custom Event EnumerationCompleted As TypedEventHandler(Of RemoteSystemSessionParticipantWatcher, Object)
Tipo evento
TypedEventHandler<RemoteSystemSessionParticipantWatcher,Object>
TypedEventHandler<RemoteSystemSessionParticipantWatcher,IInspectable>
Requisiti Windows
Funzionalità dell'app |
remoteSystem
|
Commenti
Un'app può ritardare il rendering dell'interfaccia utente per i partecipanti alla sessione fino a questo punto, in modo che gli elementi dell'interfaccia utente per molti partecipanti possano essere sottoposti a rendering contemporaneamente. Gli eventi di individuazione dei partecipanti possono continuare a essere generati dopo questo evento.