Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

AdaptiveMediaSource.DownloadFailed 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 fails.

// Register
event_token DownloadFailed(TypedEventHandler<AdaptiveMediaSource, AdaptiveMediaSourceDownloadFailedEventArgs const&> const& handler) const;

// Revoke with event_token
void DownloadFailed(event_token const* cookie) const;

// Revoke with event_revoker
AdaptiveMediaSource::DownloadFailed_revoker DownloadFailed(auto_revoke_t, TypedEventHandler<AdaptiveMediaSource, AdaptiveMediaSourceDownloadFailedEventArgs const&> const& handler) const;
public event TypedEventHandler<AdaptiveMediaSource,AdaptiveMediaSourceDownloadFailedEventArgs> DownloadFailed;
function onDownloadFailed(eventArgs) { /* Your code */ }
adaptiveMediaSource.addEventListener("downloadfailed", onDownloadFailed);
adaptiveMediaSource.removeEventListener("downloadfailed", onDownloadFailed);
- or -
adaptiveMediaSource.ondownloadfailed = onDownloadFailed;
Public Custom Event DownloadFailed As TypedEventHandler(Of AdaptiveMediaSource, AdaptiveMediaSourceDownloadFailedEventArgs) 

Event Type

Applies to


Feedback

Was this page helpful?