MediaProtectionManager.ServiceRequested É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.
Se déclenche lorsqu’un service est demandé.
public:
virtual event ServiceRequestedEventHandler ^ ServiceRequested;
// Register
event_token ServiceRequested(ServiceRequestedEventHandler const& handler) const;
// Revoke with event_token
void ServiceRequested(event_token const* cookie) const;
// Revoke with event_revoker
MediaProtectionManager::ServiceRequested_revoker ServiceRequested(auto_revoke_t, ServiceRequestedEventHandler const& handler) const;
public event ServiceRequestedEventHandler ServiceRequested;
function onServiceRequested(eventArgs) { /* Your code */ }
mediaProtectionManager.addEventListener("servicerequested", onServiceRequested);
mediaProtectionManager.removeEventListener("servicerequested", onServiceRequested);
- or -
mediaProtectionManager.onservicerequested = onServiceRequested;
Public Custom Event ServiceRequested As ServiceRequestedEventHandler