EventDrivenActivity クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
注意事項
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
実行がイベントによって初期化される Activity をラップします。 このクラスは継承できません。
public ref class EventDrivenActivity sealed : System::Workflow::Activities::SequenceActivity
[System.Drawing.ToolboxBitmap(typeof(System.Workflow.Activities.EventDrivenActivity), "Resources.EventDriven.png")]
[System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.EventDrivenValidator))]
public sealed class EventDrivenActivity : System.Workflow.Activities.SequenceActivity
[System.Drawing.ToolboxBitmap(typeof(System.Workflow.Activities.EventDrivenActivity), "Resources.EventDriven.png")]
[System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.EventDrivenValidator))]
[System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public sealed class EventDrivenActivity : System.Workflow.Activities.SequenceActivity
[<System.Drawing.ToolboxBitmap(typeof(System.Workflow.Activities.EventDrivenActivity), "Resources.EventDriven.png")>]
[<System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.EventDrivenValidator))>]
type EventDrivenActivity = class
inherit SequenceActivity
[<System.Drawing.ToolboxBitmap(typeof(System.Workflow.Activities.EventDrivenActivity), "Resources.EventDriven.png")>]
[<System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.EventDrivenValidator))>]
[<System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")>]
type EventDrivenActivity = class
inherit SequenceActivity
Public NotInheritable Class EventDrivenActivity
Inherits SequenceActivity
- 継承
- 属性
例
EventDrivenActivity を使用してステート マシンの遷移を実行する方法を次のコード例に示します。 このコード例は、StateMachineWorkflow.cs ファイルから抜粋した SimpleStateMachineWorkflow SDK サンプルの一部です。 詳細については、「 Simple State Machine」を参照してください。
this.state1Delay = new System.Workflow.Activities.DelayActivity();
Me.state1Delay = New System.Workflow.Activities.DelayActivity
注釈
注意
ここでは、廃止された型と名前空間について説明します。 詳細については、「.NET 4.5 での Windows Workflow Foundation の新機能」を参照してください。
これは、イベントの処理に使用される CompositeActivity です。通常、イベントは、遅延タイマーの期限切れに応答してホストまたはランタイムによって発生させることができます。 EventDrivenActivity は、SequenceActivity から継承されるため、これは、最初のアクティビティを IEventActivity にする必要があるという追加の制約が加えられたシーケンスです。
EventDrivenActivity は CompositeActivity です。つまり、EventDrivenActivity には他のアクティビティを含めることができます。 EventDrivenActivity は、SequenceActivity アクティビティに似ています。ただし、いくつかの特性が追加されています。
EventDrivenActivity には、ListenActivity、StateActivity、または StateMachineWorkflowActivity である親が必要です。
EventDrivenActivity アクティビティの最初の子は、IEventActivity から継承するアクティビティである必要があります。 後続のすべての子アクティビティには、任意の型を使用できます。 IEventActivity は、ブロックし、タイマーの開始、メッセージの到着など、保留中の一部のイベントを待機します。 イベントが発生すると、IEventActivity は実行を終了し、後続のすべてのアクティビティが実行されます。
StateMachineWorkflowActivity が EventDrivenActivity を格納しているとき、EventDrivenActivity にはいくつかの制約があります。
EventDrivenActivity に格納できるアクティビティは 1 つだけで、型は IEventActivity に制限されます。
HandleExternalEventActivity を最初の子アクティビティにする必要があります。 HandleExternalEventActivity が最初の子でない場合は、EventDrivenActivity を子アクティビティのイベント ハンドラーに入れることも、HandleExternalEventActivity の子にすることもできません。
最初のアクティビティが HandleExternalEventActivity であれば、イベント ハンドラーはどのアクティビティでも格納できます。 HandleExternalEventActivity 以外のアクティビティが EventDrivenActivity に格納されている場合、そのアクティビティにはイベント ハンドラーを設定できません。
たとえば、イベント処理をサポートするアクティビティは EventDrivenActivity の内部で使用できますが、このアクティビティにはイベント ハンドラーを関連付けることができません。
また、EventDrivenActivity は ConditionedActivityGroup を格納できますが、ConditionedActivityGroup は HandleExternalEventActivity クラスを格納できません。
コンストラクター
EventDrivenActivity() |
古い.
EventDrivenActivity クラスの新しいインスタンスを初期化します。 |
EventDrivenActivity(String) |
古い.
アクティビティ名を使用して、EventDrivenActivity クラスの新しいインスタンスを初期化します。 |
プロパティ
Activities |
古い.
子アクティビティすべてのコレクションを表す、ActivityCollection オブジェクトを取得します。 (継承元 CompositeActivity) |
CanModifyActivities |
古い.
Activities の各アクティビティが更新可能であるかどうかを取得または設定します。 (継承元 CompositeActivity) |
Description |
古い.
Activity の、ユーザーが定義した説明を取得または設定します。 (継承元 Activity) |
DesignMode |
古い.
このインスタンスがデザイン モードとランタイム モードのどちらであるかを示す値を取得します。 (継承元 DependencyObject) |
Enabled |
古い.
このインスタンスの実行と検証が可能かどうかを示す値を取得または設定します。 (継承元 Activity) |
EnabledActivities |
古い.
Activities のうち有効なものだけを集めた、読み取り専用のコレクションを取得します。 (継承元 CompositeActivity) |
EventActivity |
古い.
変更を発生させるイベント アクティビティを取得します。 |
ExecutionResult |
古い.
このインスタンスを最後に実行した際の ActivityExecutionResult を取得します。 (継承元 Activity) |
ExecutionStatus |
古い.
このインスタンスの、現在の ActivityExecutionStatus を取得します。 (継承元 Activity) |
IsDynamicActivity |
古い.
アクティビティがワークフロー インスタンスの既定の ActivityExecutionContext で実行されているかどうかに関する情報を取得します。 (継承元 Activity) |
Name |
古い.
このインスタンスの名前を取得または設定します。 この名前は、ワークフロー プロジェクトの作成に使用されたプログラミング言語の変数の名前付け規則に準拠している必要があります。 (継承元 Activity) |
Parent |
古い.
この CompositeActivity を格納している Activity を取得します。 (継承元 Activity) |
ParentDependencyObject |
古い.
DependencyObject グラフにおける親 DependencyObject を取得します。 (継承元 DependencyObject) |
QualifiedName |
古い.
アクティビティの限定名を取得します。 限定アクティビティ名は、ワークフロー インスタンス内で一意です。 (継承元 Activity) |
Site |
古い.
Site の DependencyObject コンポーネントの参照を取得または設定します。 (継承元 DependencyObject) |
UserData |
古い.
このクラス インスタンスにカスタム データを関連付ける IDictionary を取得します。 (継承元 DependencyObject) |
WorkflowInstanceId |
古い.
インスタンスに関連付けられた Guid を取得します。 (継承元 Activity) |
メソッド
イベント
Canceling |
古い.
アクティビティ実行が取り消された場合に発生します。 (継承元 Activity) |
Closed |
古い.
Activity の実行終了時に発生します。 (継承元 Activity) |
Compensating |
古い.
Activity 上で補正メソッドが起動されたときに発生します。 (継承元 Activity) |
Executing |
古い.
Activity の実行時に発生します。 (継承元 Activity) |
Faulting |
古い.
インスタンスの実行中、例外が発生したときに発生します。 (継承元 Activity) |
StatusChanged |
古い.
実行中の ActivityExecutionStatus の Activity が変更された場合に発生します。 (継承元 Activity) |
明示的なインターフェイスの実装
IActivityEventListener<ActivityExecutionStatusChangedEventArgs>.OnEvent(Object, ActivityExecutionStatusChangedEventArgs) |
古い.
定期受信されているイベントが発生したときの処理プロシージャを定義します。 (継承元 SequenceActivity) |
IComponent.Disposed |
古い.
コンポーネントの Disposed イベントを処理するメソッドを表します。 (継承元 DependencyObject) |
適用対象
こちらもご覧ください
.NET