AdaptiveMediaSource.DownloadBitrateChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)