MediaProtectionManager.ServiceRequested Event

Definition

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 

Event Type

Applies to