AdaptiveMediaSource.DownloadBitrateChanged 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 o CurrentDownloadBitrate é alterado.
// Register
event_token DownloadBitrateChanged(TypedEventHandler<AdaptiveMediaSource, AdaptiveMediaSourceDownloadBitrateChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void DownloadBitrateChanged(event_token const* cookie) const;
// Revoke with event_revoker
AdaptiveMediaSource::DownloadBitrateChanged_revoker DownloadBitrateChanged(auto_revoke_t, TypedEventHandler<AdaptiveMediaSource, AdaptiveMediaSourceDownloadBitrateChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<AdaptiveMediaSource,AdaptiveMediaSourceDownloadBitrateChangedEventArgs> DownloadBitrateChanged;
function onDownloadBitrateChanged(eventArgs) { /* Your code */ }
adaptiveMediaSource.addEventListener("downloadbitratechanged", onDownloadBitrateChanged);
adaptiveMediaSource.removeEventListener("downloadbitratechanged", onDownloadBitrateChanged);
- or -
adaptiveMediaSource.ondownloadbitratechanged = onDownloadBitrateChanged;
Public Custom Event DownloadBitrateChanged As TypedEventHandler(Of AdaptiveMediaSource, AdaptiveMediaSourceDownloadBitrateChangedEventArgs)