ExtendedExecutionForegroundSession.Revoked Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Cet événement se produit lorsque le système révoque l’exécution étendue.
// 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)
Type d'événement
TypedEventHandler<Object,ExtendedExecutionForegroundRevokedEventArgs>
TypedEventHandler<IInspectable,ExtendedExecutionForegroundRevokedEventArgs>
Configuration requise pour Windows
Fonctionnalités de l’application |
extendedExecutionBackgroundAudio
extendedExecutionCritical
extendedExecutionUnconstrained
|