Rule Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Rule sınıfının yeni bir örneğini başlatır.
Aşırı Yüklemeler
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>) |
öğesinin adını |
Rule(String, RuleCondition, IList<RuleAction>, IList<RuleAction>) |
öğesinin Rule adını |
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)
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
Şunlara uygulanır
Rule(String, RuleCondition, IList<RuleAction>)
öğesinin adınıRule
, kural koşulunu Rule ve SONRAKİ eylemlerinin listesini kullanarak sınıfını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);
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
- condition
- RuleCondition
RuleCondition için.Rule
- 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, SONRAKİ 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
- condition
- RuleCondition
RuleCondition için.Rule
- 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.