AdaptiveMediaSource.DownloadRequested Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит при запросе операции загрузки ресурсов.
// 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)
Тип события
Комментарии
Обработайте это событие, чтобы изменить параметры операции загрузки ресурса до начала операции.