AdaptiveMediaSource.DownloadCompleted Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’une opération de téléchargement de ressource se termine
// 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)