Share via


PlaylistMediaSource.ClipResolved | clipresolved event

Occurs when a clip in the Clips list is successfully resolved.

Syntax

function onClipResolved(eventArgs) { /* Your code */ }
 
// addEventListener syntax
playlistMediaSource.addEventListener("clipresolved", onClipResolved);
playlistMediaSource.removeEventListener("clipresolved", onClipResolved);
 
- or -

playlistMediaSource.onclipresolved = onClipResolved;
public event TypedEventHandler<PlaylistMediaSource, ClipResolvedEventArgs> ClipResolved
Public Event ClipResolved As TypedEventHandler(Of PlaylistMediaSource, ClipResolvedEventArgs)
public:
event TypedEventHandler<PlaylistMediaSource, ClipResolvedEventArgs>^ ClipResolved {
   Windows::Foundation::EventRegistrationToken add(TypedEventHandler<PlaylistMediaSource, ClipResolvedEventArgs>^ value);
   void remove(Windows::Foundation::EventRegistrationToken token);
}

Event information

Delegate TypedEventHandler<PlaylistMediaSource, ClipResolvedEventArgs>

Remarks

Handle this event to update your UI when a clip has been resolved. For example, you may update the playlist UI to show the duration of the resolved clip.

Requirements

Minimum supported client

Windows 10 Insider Preview

Minimum supported server

Windows Server Technical Preview

Minimum supported phone

Windows 10 Mobile Insider Preview

Namespace

Windows.Media.Playlists Windows::Media::Playlists [C++]

Metadata

Windows.winmd

See also

PlaylistMediaSource

Clips