BackgroundWorker.WorkerSupportsCancellation Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit une valeur qui indique si BackgroundWorker prend en charge l'annulation asynchrone.
public:
property bool WorkerSupportsCancellation { bool get(); void set(bool value); };
public bool WorkerSupportsCancellation { get; set; }
member this.WorkerSupportsCancellation : bool with get, set
Public Property WorkerSupportsCancellation As Boolean
Valeur de propriété
true
si BackgroundWorker prend en charge l'annulation ; sinon, false
. La valeur par défaut est false
.
Remarques
Définissez la propriété sur WorkerSupportsCancellationtrue
si vous souhaitez que le prend en charge l’annulation BackgroundWorker . Lorsque cette propriété a la valeur true
, vous pouvez appeler la CancelAsync méthode pour interrompre une opération en arrière-plan.