UserWatcher.EnumerationCompleted 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当观察程序事件的初始传递已处理且用户集合完成时触发。
// 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)
事件类型
TypedEventHandler<UserWatcher,IInspectable>