MediaPlayer.BufferingEnded Evento

Definição

Ocorre quando o buffer foi concluído.

Observação

MediaPlayer.BufferingEnded pode ser alterado ou indisponível após o Windows 10, versão 1607. Em vez disso, use a propriedade MediaPlayer.PlaybackSession para obter um objeto MediaPlaybackSession e, em seguida, use o evento MediaPlaybackSession.BufferingEnded .

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

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

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

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

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

Tipo de evento

Atributos

Aplica-se a