Share via


RemoteSystemSessionParticipantWatcher.EnumerationCompleted 事件

定義

在參與者的初始列舉完成之後引發。

// 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) 

事件類型

Windows 需求

應用程式功能
remoteSystem

備註

應用程式可能會延遲會話參與者的 UI 轉譯,直到此時為止,讓許多參與者的 UI 元素可以一次轉譯。 在此事件之後,參與者探索事件可以繼續引發。

適用於