다음을 통해 공유


WindowsUpdateManager.ActionCompleted 이벤트

정의

업데이트에 대한 작업이 완료되었을 때 발생합니다.

// Register
event_token ActionCompleted(TypedEventHandler<WindowsUpdateManager, WindowsUpdateActionCompletedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WindowsUpdateManager::ActionCompleted_revoker ActionCompleted(auto_revoke_t, TypedEventHandler<WindowsUpdateManager, WindowsUpdateActionCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<WindowsUpdateManager,WindowsUpdateActionCompletedEventArgs> ActionCompleted;
function onActionCompleted(eventArgs) { /* Your code */ }
windowsUpdateManager.addEventListener("actioncompleted", onActionCompleted);
windowsUpdateManager.removeEventListener("actioncompleted", onActionCompleted);
- or -
windowsUpdateManager.onactioncompleted = onActionCompleted;
Public Custom Event ActionCompleted As TypedEventHandler(Of WindowsUpdateManager, WindowsUpdateActionCompletedEventArgs) 

이벤트 유형

적용 대상

추가 정보