ActivityExecutionResult 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
注意事項
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
Activityの ActivityExecutionStatus を持つ Closed の状態を修飾するアクティビティの結果値の列挙。
public enum class ActivityExecutionResult
public enum ActivityExecutionResult
[System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public enum ActivityExecutionResult
type ActivityExecutionResult =
[<System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")>]
type ActivityExecutionResult =
Public Enum ActivityExecutionResult
- 継承
- 属性
フィールド
| 名前 | 値 | 説明 |
|---|---|---|
| None | 0 | アクティビティが Closed 状態ではありません。 |
| Succeeded | 1 | アクティビティは、実行中の状態から閉じた状態に遷移しました。 |
| Canceled | 2 | アクティビティが取り消し状態から終了状態に移行しました。 |
| Compensated | 3 | アクティビティは、補正状態から閉じた状態に遷移しました。 |
| Faulted | 4 | アクティビティは、障害状態から閉じた状態に遷移しました。 |
| Uninitialized | 5 | アクティビティは、初期化された状態から閉じた状態に遷移しました。 |
注釈
Note
この資料では、古い型と名前空間について説明します。 詳細については、「Windows Workflow Foundation 4.5 の
結果は、ワークフロー インスタンス内の Activity インスタンスの最終的な状態を表します。 列挙の値は、アクティビティ エンジン コントラクトによって決定されるアクティビティ状態図に基づいています。
None以外の値は、System.Workflow.ComponentModel.ActivityExecutionStatusがActivityExecutionStatus.Closedされているアクティビティに対してのみ許可されます。