다음을 통해 공유


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) 

이벤트 유형

특성

적용 대상