SetStateEventArgs クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
注意事項
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
StateMachineWorkflowActivity の状態を設定する引数として使用されるクラスを表します。
public ref class SetStateEventArgs : EventArgs
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
public class SetStateEventArgs : EventArgs
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
[System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public class SetStateEventArgs : EventArgs
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
type SetStateEventArgs = class
inherit EventArgs
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
[<System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")>]
type SetStateEventArgs = class
inherit EventArgs
Public Class SetStateEventArgs
Inherits EventArgs
- 継承
- 属性
注釈
注意
ここでは、廃止された型と名前空間について説明します。 詳細については、「.NET 4.5 での Windows Workflow Foundation の新機能」を参照してください。
StateMachineWorkflowActivity では、ホスト アプリケーションからの状態設定が可能です。 これにより、ホスト アプリケーションは、ステート マシンの現在の状態をオーバーライドできます。 そのためには、SetStateEventArgs クラスのインスタンスを定数 StateMachineWorkflowActivity.SetStateQueueName によって名付けられた WorkflowQueue に追加します。
SetState クラスで StateMachineWorkflowInstance メソッドを使用すると、より簡単に実行できます。
SetState メソッドを使用してホストから SetState 操作を実行できますが、次の例に示すように、ユーザーがステート マシンのワークフローにイベントを追加して実行することもできます。
public void SetState(string targetStateName)
{
if (targetStateName == null)
{
throw new ArgumentNullException("targetStateName");
}
SetStateEventArgs args1 = new SetStateEventArgs(targetStateName);
this.WorkflowInstance.EnqueueItemOnIdle("SetStateQueue", args1, null, null);
}
ステート マシンのワークフローでは、この特別なイベントをリッスンするために SetStateQueue
と呼ばれる特別なキューを使用します。
コンストラクター
SetStateEventArgs(String) |
古い.
SetStateEventArgs クラスの新しいインスタンスを初期化します。 |
プロパティ
TargetStateName |
古い.
StateActivity が設定される状態を取得します。 |
メソッド
Equals(Object) |
古い.
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetHashCode() |
古い.
既定のハッシュ関数として機能します。 (継承元 Object) |
GetType() |
古い.
現在のインスタンスの Type を取得します。 (継承元 Object) |
MemberwiseClone() |
古い.
現在の Object の簡易コピーを作成します。 (継承元 Object) |
ToString() |
古い.
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
適用対象
こちらもご覧ください
.NET