UserWatcher.EnumerationCompleted Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Fires when the initial pass of watcher events has been processed and the collection of users is complete.
// Register
event_token EnumerationCompleted(TypedEventHandler<UserWatcher, IInspectable const&> const& handler) const;
// Revoke with event_token
void EnumerationCompleted(event_token const* cookie) const;
// Revoke with event_revoker
UserWatcher::EnumerationCompleted_revoker EnumerationCompleted(auto_revoke_t, TypedEventHandler<UserWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<UserWatcher,object> EnumerationCompleted;
function onEnumerationCompleted(eventArgs) { /* Your code */ }
userWatcher.addEventListener("enumerationcompleted", onEnumerationCompleted);
userWatcher.removeEventListener("enumerationcompleted", onEnumerationCompleted);
- or -
userWatcher.onenumerationcompleted = onEnumerationCompleted;
Public Custom Event EnumerationCompleted As TypedEventHandler(Of UserWatcher, Object)
Event Type
TypedEventHandler<UserWatcher,IInspectable>