AdaptiveMediaSource.DownloadCompleted Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando uma operação de download de recursos é concluída
// 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)