共用方式為


ExtendedExecutionForegroundSession.Revoked 事件

定義

當系統撤銷擴充執行時,就會發生此事件。

// Register
event_token Revoked(TypedEventHandler<IInspectable, ExtendedExecutionForegroundRevokedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
ExtendedExecutionForegroundSession::Revoked_revoker Revoked(auto_revoke_t, TypedEventHandler<IInspectable, ExtendedExecutionForegroundRevokedEventArgs const&> const& handler) const;
public event TypedEventHandler<object,ExtendedExecutionForegroundRevokedEventArgs> Revoked;
function onRevoked(eventArgs) { /* Your code */ }
extendedExecutionForegroundSession.addEventListener("revoked", onRevoked);
extendedExecutionForegroundSession.removeEventListener("revoked", onRevoked);
- or -
extendedExecutionForegroundSession.onrevoked = onRevoked;
Public Custom Event Revoked As TypedEventHandler(Of Object, ExtendedExecutionForegroundRevokedEventArgs) 

事件類型

Windows 需求

應用程式功能
extendedExecutionBackgroundAudio extendedExecutionCritical extendedExecutionUnconstrained

適用於