IBackgroundTaskRegistration.Unregister(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.