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 元素。 在此事件之后,可以继续引发参与者发现事件。

适用于