SqlWorkflowPersistenceService.IPendingWork.Complete Méthode
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.
Termine le travail en traitement par lots et libère toutes les ressources.
virtual void System.Workflow.Runtime.IPendingWork.Complete(bool succeeded, System::Collections::ICollection ^ items) = System::Workflow::Runtime::IPendingWork::Complete;
void IPendingWork.Complete (bool succeeded, System.Collections.ICollection items);
abstract member System.Workflow.Runtime.IPendingWork.Complete : bool * System.Collections.ICollection -> unit
override this.System.Workflow.Runtime.IPendingWork.Complete : bool * System.Collections.ICollection -> unit
Sub Complete (succeeded As Boolean, items As ICollection) Implements IPendingWork.Complete
Paramètres
- succeeded
- Boolean
true
si la validation a abouti ; sinon false
.
- items
- ICollection
ICollection d'objets d'état sérialisés.
Implémente
Remarques
Dans l'implémentation prédéfinie de SqlWorkflowPersistenceService,
IPendingWork.Complete est une opération inefficace. Si vous héritez de la classe SqlWorkflowPersistenceService et si vous l'étendez, vous pouvez utiliser IPendingWork.Complete pour effectuer toutes les actions requises sur le items
définies par votre implémentation.