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)
Тип события
TypedEventHandler<RemoteSystemSessionParticipantWatcher,Object>
TypedEventHandler<RemoteSystemSessionParticipantWatcher,IInspectable>
Требования к Windows
Возможности приложения |
remoteSystem
|
Комментарии
Приложение может отложить отрисовку пользовательского интерфейса для участников сеанса до этого момента, чтобы элементы пользовательского интерфейса для многих участников можно было визуализировать одновременно. События обнаружения участников могут по-прежнему вызываться после этого события.