AdaptiveMediaSource.DownloadBitrateChanged Event

Definition

Occurs when the CurrentDownloadBitrate changes.

// 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) 

Event Type

Applies to