Rule コンストラクター

定義

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

オーバーロード

名前 説明
Rule()

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

Rule(String)

Ruleの名前を使用して、Rule クラスの新しいインスタンスを初期化します。

Rule(String, RuleCondition, IList<RuleAction>)

Ruleの名前、ルール条件、THEN アクションの一覧を使用して、Rule クラスの新しいインスタンスを初期化します。

Rule(String, RuleCondition, IList<RuleAction>, IList<RuleAction>)

Ruleの名前、ルール条件、THEN アクションの一覧、ELSE アクションの一覧を使用して、Rule クラスの新しいインスタンスを初期化します。

Rule()

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

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

適用対象

Rule(String)

Ruleの名前を使用して、Rule クラスの新しいインスタンスを初期化します。

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

パラメーター

name
String

Ruleの名前。

適用対象

Rule(String, RuleCondition, IList<RuleAction>)

Ruleの名前、ルール条件、THEN アクションの一覧を使用して、Rule クラスの新しいインスタンスを初期化します。

public:
 Rule(System::String ^ name, System::Workflow::Activities::Rules::RuleCondition ^ condition, System::Collections::Generic::IList<System::Workflow::Activities::Rules::RuleAction ^> ^ thenActions);
public Rule(string name, System.Workflow.Activities.Rules.RuleCondition condition, System.Collections.Generic.IList<System.Workflow.Activities.Rules.RuleAction> thenActions);
new System.Workflow.Activities.Rules.Rule : string * System.Workflow.Activities.Rules.RuleCondition * System.Collections.Generic.IList<System.Workflow.Activities.Rules.RuleAction> -> System.Workflow.Activities.Rules.Rule
Public Sub New (name As String, condition As RuleCondition, thenActions As IList(Of RuleAction))

パラメーター

name
String

Ruleの名前。

condition
RuleCondition

RuleConditionRule

thenActions
IList<RuleAction>

条件が true であるかどうかを評価する RuleAction オブジェクトのコレクション。

適用対象

Rule(String, RuleCondition, IList<RuleAction>, IList<RuleAction>)

Ruleの名前、ルール条件、THEN アクションの一覧、ELSE アクションの一覧を使用して、Rule クラスの新しいインスタンスを初期化します。

public:
 Rule(System::String ^ name, System::Workflow::Activities::Rules::RuleCondition ^ condition, System::Collections::Generic::IList<System::Workflow::Activities::Rules::RuleAction ^> ^ thenActions, System::Collections::Generic::IList<System::Workflow::Activities::Rules::RuleAction ^> ^ elseActions);
public Rule(string name, System.Workflow.Activities.Rules.RuleCondition condition, System.Collections.Generic.IList<System.Workflow.Activities.Rules.RuleAction> thenActions, System.Collections.Generic.IList<System.Workflow.Activities.Rules.RuleAction> elseActions);
new System.Workflow.Activities.Rules.Rule : string * System.Workflow.Activities.Rules.RuleCondition * System.Collections.Generic.IList<System.Workflow.Activities.Rules.RuleAction> * System.Collections.Generic.IList<System.Workflow.Activities.Rules.RuleAction> -> System.Workflow.Activities.Rules.Rule
Public Sub New (name As String, condition As RuleCondition, thenActions As IList(Of RuleAction), elseActions As IList(Of RuleAction))

パラメーター

name
String

Ruleの名前。

condition
RuleCondition

RuleConditionRule

thenActions
IList<RuleAction>

条件が true かどうかを評価する RuleAction オブジェクトのコレクション。

elseActions
IList<RuleAction>

条件が false であるかどうかを評価する RuleAction オブジェクトのコレクション。

適用対象