BackgroundWorker.WorkerSupportsCancellation Property
Gets or sets a value that indicates whether the BackgroundWorker supports asynchronous cancellation.
Namespace: System.ComponentModel
Assembly: System (in System.dll)
Property Value
Type: System.Booleantrue if the BackgroundWorker supports cancellation; otherwise false. The default is false.
Set the WorkerSupportsCancellation property to true if you want the BackgroundWorker to support cancellation. When this property is true, you can call the CancelAsync method to interrupt a background operation.
When this property is false, calling the CancelAsync method will cause an InvalidOperationException.
The following code example demonstrates the use of the WorkerSupportsCancellation property to check whether a background operation allows cancellation before canceling it. To view the complete code for this sample, see How to: Use a Background Worker.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.