AdaptiveMediaSource.DownloadBitrateChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque currentDownloadBitrate change.
// 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)