SqlWorkflowPersistenceService.IPendingWork.Complete メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
作業バッチを完了し、すべてのリソースを解放します。
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
パラメーター
- succeeded
- Boolean
コミットが成功した場合は true
。それ以外の場合は false
。
- items
- ICollection
シリアル化された状態オブジェクトの ICollection。
実装
注釈
そのまますぐに使用できる SqlWorkflowPersistenceService の実装では、
IPendingWork.Complete は no-op です。 SqlWorkflowPersistenceService クラスから継承して拡張する場合、IPendingWork.Complete を使用して、items
に対して実装に応じて必要なアクションを実行できます。