AdaptiveMediaSource.DownloadRequested 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.
Occurs when a resource download operation is requested.
// Register
event_token DownloadRequested(TypedEventHandler<AdaptiveMediaSource, AdaptiveMediaSourceDownloadRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void DownloadRequested(event_token const* cookie) const;
// Revoke with event_revoker
AdaptiveMediaSource::DownloadRequested_revoker DownloadRequested(auto_revoke_t, TypedEventHandler<AdaptiveMediaSource, AdaptiveMediaSourceDownloadRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<AdaptiveMediaSource,AdaptiveMediaSourceDownloadRequestedEventArgs> DownloadRequested;
function onDownloadRequested(eventArgs) { /* Your code */ }
adaptiveMediaSource.addEventListener("downloadrequested", onDownloadRequested);
adaptiveMediaSource.removeEventListener("downloadrequested", onDownloadRequested);
- or -
adaptiveMediaSource.ondownloadrequested = onDownloadRequested;
Public Custom Event DownloadRequested As TypedEventHandler(Of AdaptiveMediaSource, AdaptiveMediaSourceDownloadRequestedEventArgs)
Event Type
Remarks
Handle this event to modify parameters of the resource download operation before the operation begins.