DownloadOperation.Progress 属性

定义

获取操作的当前进度。

BackgroundDownloadProgress Progress();
public BackgroundDownloadProgress Progress { get; }
var backgroundDownloadProgress = downloadOperation.progress;
Public ReadOnly Property Progress As BackgroundDownloadProgress

属性值

描述当前下载操作进度的 BackgroundDownloadProgress 结构的实例。

注解

进度的值是实时更新的,这意味着在执行进度处理程序时,该值可能会更改。 最佳做法是在进度处理程序的开头创建 Progress 属性值的本地副本,并在进度处理程序中仅使用该副本,以在处理程序执行时保持一致的进度视图。

适用于

另请参阅