Rule 생성자

정의

Rule 클래스의 새 인스턴스를 초기화합니다.

오버로드

Name Description
Rule()

Rule 클래스의 새 인스턴스를 초기화합니다.

Rule(String)

의 이름을 사용하여 클래스의 Rule 새 인스턴스를 초기화합니다 Rule.

Rule(String, RuleCondition, IList<RuleAction>)

이름, 규칙 조건 및 THEN 작업 목록을 사용하여 Rule클래스의 새 인스턴스 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>)

이름, 규칙 조건 및 THEN 작업 목록을 사용하여 Rule클래스의 새 인스턴스 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 컬렉션입니다.

적용 대상