共用方式為


BackgroundTaskRegistrationGroup 建構函式

定義

多載

BackgroundTaskRegistrationGroup(String)

使用指定的群組識別碼建立 BackgroundTaskRegistrationGroup

BackgroundTaskRegistrationGroup(String, String)

使用指定的群組識別碼建立 BackgroundTaskRegistrationGroup

BackgroundTaskRegistrationGroup(String)

使用指定的群組識別碼建立 BackgroundTaskRegistrationGroup

public:
 BackgroundTaskRegistrationGroup(Platform::String ^ id);
 BackgroundTaskRegistrationGroup(winrt::hstring const& id);
public BackgroundTaskRegistrationGroup(string id);
function BackgroundTaskRegistrationGroup(id)
Public Sub New (id As String)

參數

id
String

Platform::String

winrt::hstring

群組 ID。

備註

若要減少與其他群組識別碼的衝突,請考慮在群組識別碼中包含您的功能變數名稱。 例如:"com.contoso.appname.tasks"。 或使用 GUID的字串形式。

適用於

BackgroundTaskRegistrationGroup(String, String)

使用指定的群組識別碼建立 BackgroundTaskRegistrationGroup

public:
 BackgroundTaskRegistrationGroup(Platform::String ^ id, Platform::String ^ name);
 BackgroundTaskRegistrationGroup(winrt::hstring const& id, winrt::hstring const& name);
public BackgroundTaskRegistrationGroup(string id, string name);
function BackgroundTaskRegistrationGroup(id, name)
Public Sub New (id As String, name As String)

參數

id
String

Platform::String

winrt::hstring

群組 ID。

name
String

Platform::String

winrt::hstring

這個群組的易記名稱。

備註

若要減少與其他群組識別碼的衝突,請考慮在群組識別碼中包含您的功能變數名稱。 例如:"com.contoso.appname.tasks"。 或使用 GUID的字串形式。

如果您的群組識別碼難以區分,易記名稱對於偵錯用途很有用。

適用於