ActivityExecutionResult 列挙型

定義

注意事項

The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*

ActivityActivityExecutionStatus を持つ 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
継承
ActivityExecutionResult
属性

フィールド

名前 説明
None 0

アクティビティが Closed 状態ではありません。

Succeeded 1

アクティビティは、実行中の状態から閉じた状態に遷移しました。

Canceled 2

アクティビティが取り消し状態から終了状態に移行しました。

Compensated 3

アクティビティは、補正状態から閉じた状態に遷移しました。

Faulted 4

アクティビティは、障害状態から閉じた状態に遷移しました。

Uninitialized 5

アクティビティは、初期化された状態から閉じた状態に遷移しました。

注釈

Note

この資料では、古い型と名前空間について説明します。 詳細については、「Windows Workflow Foundation 4.5 のDeprecated 型」を参照してください。

結果は、ワークフロー インスタンス内の Activity インスタンスの最終的な状態を表します。 列挙の値は、アクティビティ エンジン コントラクトによって決定されるアクティビティ状態図に基づいています。 None以外の値は、System.Workflow.ComponentModel.ActivityExecutionStatusActivityExecutionStatus.Closedされているアクティビティに対してのみ許可されます。

適用対象