MediaPlayer.BufferingStarted 事件

定义

当开始缓冲时发生。

注意

MediaPlayer.BufferingStarted 可能在Windows 10版本 1607 之后更改或不可用。 请改用 MediaPlayer.PlaybackSession 属性获取 MediaPlaybackSession 对象,然后使用 MediaPlaybackSession.BufferingStarted 事件。

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

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

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

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

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

事件类型

属性

适用于