MediaProtectionManager.ComponentLoadFailed 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 the load of binary data fails.
public:
virtual event ComponentLoadFailedEventHandler ^ ComponentLoadFailed;
// Register
event_token ComponentLoadFailed(ComponentLoadFailedEventHandler const& handler) const;
// Revoke with event_token
void ComponentLoadFailed(event_token const* cookie) const;
// Revoke with event_revoker
MediaProtectionManager::ComponentLoadFailed_revoker ComponentLoadFailed(auto_revoke_t, ComponentLoadFailedEventHandler const& handler) const;
public event ComponentLoadFailedEventHandler ComponentLoadFailed;
function onComponentLoadFailed(eventArgs) { /* Your code */ }
mediaProtectionManager.addEventListener("componentloadfailed", onComponentLoadFailed);
mediaProtectionManager.removeEventListener("componentloadfailed", onComponentLoadFailed);
- or -
mediaProtectionManager.oncomponentloadfailed = onComponentLoadFailed;
Public Custom Event ComponentLoadFailed As ComponentLoadFailedEventHandler