Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

MediaPlaybackItem.TimedMetadataTracksChanged 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 list of timed metadata tracks in the MediaSource associated with the MediaPlaybackItem changes.

// Register
event_token TimedMetadataTracksChanged(TypedEventHandler<MediaPlaybackItem, IVectorChangedEventArgs const&> const& handler) const;

// Revoke with event_token
void TimedMetadataTracksChanged(event_token const* cookie) const;

// Revoke with event_revoker
MediaPlaybackItem::TimedMetadataTracksChanged_revoker TimedMetadataTracksChanged(auto_revoke_t, TypedEventHandler<MediaPlaybackItem, IVectorChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<MediaPlaybackItem,IVectorChangedEventArgs> TimedMetadataTracksChanged;
function onTimedMetadataTracksChanged(eventArgs) { /* Your code */ }
mediaPlaybackItem.addEventListener("timedmetadatatrackschanged", onTimedMetadataTracksChanged);
mediaPlaybackItem.removeEventListener("timedmetadatatrackschanged", onTimedMetadataTracksChanged);
- or -
mediaPlaybackItem.ontimedmetadatatrackschanged = onTimedMetadataTracksChanged;
Public Custom Event TimedMetadataTracksChanged As TypedEventHandler(Of MediaPlaybackItem, IVectorChangedEventArgs) 

Event Type

Applies to


Feedback

Was this page helpful?