MediaPlaybackSession.PlaybackRateChanged 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 current playback rate for the MediaPlaybackSession changes.
// Register
event_token PlaybackRateChanged(TypedEventHandler<MediaPlaybackSession, IInspectable const&> const& handler) const;
// Revoke with event_token
void PlaybackRateChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaPlaybackSession::PlaybackRateChanged_revoker PlaybackRateChanged(auto_revoke_t, TypedEventHandler<MediaPlaybackSession, IInspectable const&> const& handler) const;
public event TypedEventHandler<MediaPlaybackSession,object> PlaybackRateChanged;
function onPlaybackRateChanged(eventArgs) { /* Your code */ }
mediaPlaybackSession.addEventListener("playbackratechanged", onPlaybackRateChanged);
mediaPlaybackSession.removeEventListener("playbackratechanged", onPlaybackRateChanged);
- or -
mediaPlaybackSession.onplaybackratechanged = onPlaybackRateChanged;
Public Custom Event PlaybackRateChanged As TypedEventHandler(Of MediaPlaybackSession, Object)