IBackgroundTaskRegistration.Unregister(Boolean) Method

Definition

Unregisters a registered background task.

public:
 void Unregister(bool cancelTask);
void Unregister(bool const& cancelTask);
public void Unregister(bool cancelTask);
function unregister(cancelTask)
Public Sub Unregister (cancelTask As Boolean)

Parameters

cancelTask
Boolean

bool

True if currently running instances of this background task should be canceled. If this parameter is false, currently running instances of this background task should be allowed to finish. Canceled instances receive a Canceled event with a BackgroundTaskCancellationReason of Abort.

Applies to