MediaProtectionManager.ServiceRequested イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
サービスが要求されたときに発生します。
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