MediaProtectionManager.ServiceRequested Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Fires when a service is requested.
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