MediaPlayer.BufferingProgress 属性

定义

获取为媒体内容完成的缓冲量,以百分比表示。

注意

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

public:
 property double BufferingProgress { double get(); };
double BufferingProgress();
/// [get: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.BufferingProgress instead of BufferingProgress.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
double BufferingProgress();
public double BufferingProgress { get; }
public double BufferingProgress { [Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.BufferingProgress instead of BufferingProgress.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")] get; }
var double = mediaPlayer.bufferingProgress;
Public ReadOnly Property BufferingProgress As Double

属性值

Double

double

为媒体内容完成的缓冲量。

属性

注解

值的范围是从 0 到 1。 乘以 100 可获取百分比。 默认值为 0。

适用于