EventDrivenActivity コンストラクター

定義

EventDrivenActivity クラスの新しいインスタンスを初期化します。

オーバーロード

EventDrivenActivity()

EventDrivenActivity クラスの新しいインスタンスを初期化します。

EventDrivenActivity(String)

アクティビティ名を使用して、EventDrivenActivity クラスの新しいインスタンスを初期化します。

EventDrivenActivity()

EventDrivenActivity クラスの新しいインスタンスを初期化します。

public:
 EventDrivenActivity();
public EventDrivenActivity ();
Public Sub New ()

EventDrivenActivity クラスの新規インスタンスを作成する方法を、次のコード例に示します。 このコード例は、StateMachineWorkflow.cs ファイルから抜粋した SimpleStateMachineWorkflow SDK サンプルの一部です。 詳細については、「 Simple State Machine」を参照してください。

this.eventDriven1 = new System.Workflow.Activities.EventDrivenActivity();
Me.eventDriven1 = New System.Workflow.Activities.EventDrivenActivity()

こちらもご覧ください

適用対象

EventDrivenActivity(String)

アクティビティ名を使用して、EventDrivenActivity クラスの新しいインスタンスを初期化します。

public:
 EventDrivenActivity(System::String ^ name);
public EventDrivenActivity (string name);
new System.Workflow.Activities.EventDrivenActivity : string -> System.Workflow.Activities.EventDrivenActivity
Public Sub New (name As String)

パラメーター

name
String

アクティビティのユーザー識別名。

適用対象