IBackgroundTaskRegistration.Completed 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将已完成的事件处理程序附加到已注册的后台任务。
public:
event BackgroundTaskCompletedEventHandler ^ Completed;
// Register
event_token Completed(BackgroundTaskCompletedEventHandler const& handler) const;
// Revoke with event_token
void Completed(event_token const* cookie) const;
// Revoke with event_revoker
IBackgroundTaskRegistration::Completed_revoker Completed(auto_revoke_t, BackgroundTaskCompletedEventHandler const& handler) const;
event BackgroundTaskCompletedEventHandler Completed;
function onCompleted(eventArgs) { /* Your code */ }
iBackgroundTaskRegistration.addEventListener("completed", onCompleted);
iBackgroundTaskRegistration.removeEventListener("completed", onCompleted);
- or -
iBackgroundTaskRegistration.oncompleted = onCompleted;
Event Completed As BackgroundTaskCompletedEventHandler