BackgroundTransferGroup.CreateGroup(String) 方法

定义

使用提供的组名称创建传输组。

public:
 static BackgroundTransferGroup ^ CreateGroup(Platform::String ^ name);
 static BackgroundTransferGroup CreateGroup(winrt::hstring const& name);
public static BackgroundTransferGroup CreateGroup(string name);
function createGroup(name)
Public Shared Function CreateGroup (name As String) As BackgroundTransferGroup

参数

name
String

Platform::String

winrt::hstring

组名称。 如果已存在具有此名称的组,此方法将返回对现有组对象的引用。

返回

新的 BackgroundTransferGroup

注解

BackgroundTransferGroup 对象可以保留,以支持跨应用会话的传输操作。 已向 BackgroundDownloaderBackgroundUploaderDownloadOperationUploadOperation 引入新方法,以简化在上一个应用会话中创建的访问组。

注意

Windows 8.1 和 Windows Server 2012 R2 支持整个系统最多 50 个唯一传输组。 因此,应用应为应用创建的所有传输组重复使用唯一 ID 或少量的唯一 ID。 如果在系统上创建超过 50 个传输组,则应用将处于不可恢复状态。

适用于