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 レンダリングを遅らせる場合があります。 参加者検出イベントは、このイベントの後も引き続き発生させることができます。

適用対象