Udostępnij za pośrednictwem


Rule Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy Rule.

Przeciążenia

Rule()

Inicjuje nowe wystąpienie klasy Rule.

Rule(String)

Inicjuje nowe wystąpienie Rule klasy przy użyciu nazwy Rule .

Rule(String, RuleCondition, IList<RuleAction>)

Inicjuje nowe wystąpienie Rule klasy przy użyciu nazwy Rule , warunku reguły i listy akcji.

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

Inicjuje nowe wystąpienie Rule klasy przy użyciu nazwy Rule , warunku reguły, listy akcji i listy akcji else.

Rule()

Inicjuje nowe wystąpienie klasy Rule.

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

Dotyczy

Rule(String)

Inicjuje nowe wystąpienie Rule klasy przy użyciu nazwy 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)

Parametry

name
String

Nazwa elementu Rule.

Dotyczy

Rule(String, RuleCondition, IList<RuleAction>)

Inicjuje nowe wystąpienie Rule klasy przy użyciu nazwy Rule , warunku reguły i listy akcji.

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

Parametry

name
String

Nazwa elementu Rule.

condition
RuleCondition

RuleConditionDla elementu Rule .

thenActions
IList<RuleAction>

Kolekcja RuleAction obiektów do obliczenia, czy warunek ma wartość true.

Dotyczy

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

Inicjuje nowe wystąpienie Rule klasy przy użyciu nazwy Rule , warunku reguły, listy akcji i listy akcji else.

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

Parametry

name
String

Nazwa elementu Rule.

condition
RuleCondition

RuleConditionDla elementu Rule .

thenActions
IList<RuleAction>

Kolekcja RuleAction obiektów do obliczenia, jeśli warunek ma wartość true.

elseActions
IList<RuleAction>

Kolekcja RuleAction obiektów do obliczenia, czy warunek ma wartość false.

Dotyczy