다음을 통해 공유


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

RuleCondition에 대한 Rule입니다.

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

RuleCondition에 대한 Rule입니다.

thenActions
IList<RuleAction>

조건이 true일 경우에 실행할 RuleAction 개체의 컬렉션입니다.

elseActions
IList<RuleAction>

조건이 false일 경우에 실행할 RuleAction 개체의 컬렉션입니다.

적용 대상