DownloadOperation.RequestedUri 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取从中下载文件的 URI。
public:
property Uri ^ RequestedUri { Uri ^ get(); };
public:
property Uri ^ RequestedUri { Uri ^ get(); void set(Uri ^ value); };
Uri RequestedUri();
Uri RequestedUri();
void RequestedUri(Uri value);
public System.Uri RequestedUri { get; }
public System.Uri RequestedUri { get; set; }
var uri = downloadOperation.requestedUri;
var uri = downloadOperation.requestedUri;
downloadOperation.requestedUri = uri;
Public ReadOnly Property RequestedUri As Uri
Public Property RequestedUri As Uri
属性值
要从中下载的 URI。
实现
注解
对于已 (PausedRecoverableWebErrorStatus) 遇到可恢复错误或应用 (PausedByApplication) 显式暂停的传输,可以更新 URI。 更新 URI 后,应用必须调用 DownloadOperation.Resume 以启动重试。
由于 OS 限制,每次更新 URL 时,不选择进入随机访问模式的下载都将始终从头开始重启。 若要选择进入随机访问模式,请将 DownloadOperation.IsRandomAccessRequired 设置为 true。 以这种方式配置的传输完全支持可恢复的 URL 更新。 如果更新的 URL 的时间戳或文件大小与之前 URL 的时间戳或文件大小不同,则下载将从头开始重启。 否则,将使用新 URL 从同一位置恢复传输。