Share via


UserWatcher.Stopped 이벤트

정의

사용자 감시자가 중지되면 발생합니다.

// Register
event_token Stopped(TypedEventHandler<UserWatcher, IInspectable const&> const& handler) const;

// Revoke with event_token
void Stopped(event_token const* cookie) const;

// Revoke with event_revoker
UserWatcher::Stopped_revoker Stopped(auto_revoke_t, TypedEventHandler<UserWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<UserWatcher,object> Stopped;
function onStopped(eventArgs) { /* Your code */ }
userWatcher.addEventListener("stopped", onStopped);
userWatcher.removeEventListener("stopped", onStopped);
- or -
userWatcher.onstopped = onStopped;
Public Custom Event Stopped As TypedEventHandler(Of UserWatcher, Object) 

이벤트 유형

적용 대상