Share via


MediaProtectionManager.ServiceRequested 이벤트

정의

서비스가 요청되면 발생합니다.

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 

이벤트 유형

적용 대상