Rule Oluşturucular

Tanım

Rule sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

Name Description
Rule()

Rule sınıfının yeni bir örneğini başlatır.

Rule(String)

adını Rulekullanarak sınıfının yeni bir örneğini Rule başlatır.

Rule(String, RuleCondition, IList<RuleAction>)

, kural koşulu ve THEN eylemlerinin listesini kullanarak Rulesınıfının yeni bir örneğini Rule başlatır.

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

öğesinin Rule adını Rule, kural koşulunu, THEN eylemleri listesini ve ELSE eylemlerinin listesini kullanarak sınıfın yeni bir örneğini başlatır.

Rule()

Rule sınıfının yeni bir örneğini başlatır.

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

Şunlara uygulanır

Rule(String)

adını Rulekullanarak sınıfının yeni bir örneğini Rule başlatır.

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)

Parametreler

name
String

öğesinin Ruleadı.

Şunlara uygulanır

Rule(String, RuleCondition, IList<RuleAction>)

, kural koşulu ve THEN eylemlerinin listesini kullanarak Rulesınıfının yeni bir örneğini Rule başlatır.

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))

Parametreler

name
String

öğesinin Ruleadı.

condition
RuleCondition

RuleCondition içinRule.

thenActions
IList<RuleAction>

Koşulun RuleAction doğru olup olmadığını değerlendirmek için bir nesne koleksiyonu.

Şunlara uygulanır

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

öğesinin Rule adını Rule, kural koşulunu, THEN eylemleri listesini ve ELSE eylemlerinin listesini kullanarak sınıfın yeni bir örneğini başlatır.

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))

Parametreler

name
String

öğesinin Ruleadı.

condition
RuleCondition

RuleCondition içinRule.

thenActions
IList<RuleAction>

Koşulun RuleAction doğru olup olmadığını değerlendirmek için bir nesne koleksiyonu.

elseActions
IList<RuleAction>

Koşulun RuleAction false olup olmadığını değerlendirmek için bir nesne koleksiyonu.

Şunlara uygulanır