Share via


BackgroundTaskBuilder.TaskGroup Property

Definition

Gets and sets the group identifier so a background task registration can be maintained separately.

public:
 property BackgroundTaskRegistrationGroup ^ TaskGroup { BackgroundTaskRegistrationGroup ^ get(); void set(BackgroundTaskRegistrationGroup ^ value); };
BackgroundTaskRegistrationGroup TaskGroup();

void TaskGroup(BackgroundTaskRegistrationGroup value);
public BackgroundTaskRegistrationGroup TaskGroup { get; set; }
var backgroundTaskRegistrationGroup = backgroundTaskBuilder.taskGroup;
backgroundTaskBuilder.taskGroup = backgroundTaskRegistrationGroup;
Public Property TaskGroup As BackgroundTaskRegistrationGroup

Property Value

A BackgroundTaskRegistrationGroup representing the group identifier for the task.

Applies to

See also