MediaPlayer.SeekCompleted Event

Definition

Occurs when a seek operation has finished.

Note

MediaPlayer.SeekCompleted may be altered or unavailable after Windows 10, version 1607. Instead, use the MediaPlayer.PlaybackSession property to get a MediaPlaybackSession object and then use the MediaPlaybackSession.SeekCompleted event.

// Register
event_token SeekCompleted(TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
MediaPlayer::SeekCompleted_revoker SeekCompleted(auto_revoke_t, TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;
/// [add: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.SeekCompleted instead of SeekCompleted.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
/// [remove: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.SeekCompleted instead of SeekCompleted.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
// Register
event_token SeekCompleted(TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
MediaPlayer::SeekCompleted_revoker SeekCompleted(auto_revoke_t, TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;
public event TypedEventHandler<MediaPlayer,object> SeekCompleted;
[add: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.SeekCompleted instead of SeekCompleted.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
[remove: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.SeekCompleted instead of SeekCompleted.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
public event TypedEventHandler<MediaPlayer,object> SeekCompleted;
function onSeekCompleted(eventArgs) { /* Your code */ }
mediaPlayer.addEventListener("seekcompleted", onSeekCompleted);
mediaPlayer.removeEventListener("seekcompleted", onSeekCompleted);
- or -
mediaPlayer.onseekcompleted = onSeekCompleted;
Public Custom Event SeekCompleted As TypedEventHandler(Of MediaPlayer, Object) 

Event Type

Attributes

Applies to