AdaptiveMediaSource.DownloadCompleted Ereignis
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Tritt auf, wenn ein Ressourcendownloadvorgang abgeschlossen ist.
// Register
event_token DownloadCompleted(TypedEventHandler<AdaptiveMediaSource, AdaptiveMediaSourceDownloadCompletedEventArgs const&> const& handler) const;
// Revoke with event_token
void DownloadCompleted(event_token const* cookie) const;
// Revoke with event_revoker
AdaptiveMediaSource::DownloadCompleted_revoker DownloadCompleted(auto_revoke_t, TypedEventHandler<AdaptiveMediaSource, AdaptiveMediaSourceDownloadCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<AdaptiveMediaSource,AdaptiveMediaSourceDownloadCompletedEventArgs> DownloadCompleted;
function onDownloadCompleted(eventArgs) { /* Your code */ }
adaptiveMediaSource.addEventListener("downloadcompleted", onDownloadCompleted);
adaptiveMediaSource.removeEventListener("downloadcompleted", onDownloadCompleted);
- or -
adaptiveMediaSource.ondownloadcompleted = onDownloadCompleted;
Public Custom Event DownloadCompleted As TypedEventHandler(Of AdaptiveMediaSource, AdaptiveMediaSourceDownloadCompletedEventArgs)