RuleSetReference 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
주의
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
워크플로에서 RuleSet 에 있는 RuleSetCollection 의 이름을 보유합니다. 이 클래스는 상속될 수 없습니다.
public ref class RuleSetReference sealed : System::Workflow::ComponentModel::DependencyObject
[System.ComponentModel.Browsable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Workflow.Activities.Rules.Design.RuleSetReferenceTypeConverter))]
[System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.Rules.RuleSetReferenceValidator))]
public sealed class RuleSetReference : System.Workflow.ComponentModel.DependencyObject
[System.ComponentModel.Browsable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Workflow.Activities.Rules.Design.RuleSetReferenceTypeConverter))]
[System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.Rules.RuleSetReferenceValidator))]
[System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public sealed class RuleSetReference : System.Workflow.ComponentModel.DependencyObject
[<System.ComponentModel.Browsable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Workflow.Activities.Rules.Design.RuleSetReferenceTypeConverter))>]
[<System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.Rules.RuleSetReferenceValidator))>]
type RuleSetReference = class
inherit DependencyObject
[<System.ComponentModel.Browsable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Workflow.Activities.Rules.Design.RuleSetReferenceTypeConverter))>]
[<System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.Activities.Rules.RuleSetReferenceValidator))>]
[<System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")>]
type RuleSetReference = class
inherit DependencyObject
Public NotInheritable Class RuleSetReference
Inherits DependencyObject
- 상속
- 특성
예제
다음 코드 예제에서는 RuleSetReference 클래스의 새 인스턴스를 만드는 방법과 PolicyActivity.RuleSetReference 속성 값으로 설정하는 방법을 보여 줍니다. 이 코드 예제는 SimplePolicyWorkflow.designer.cs 파일에 있는 RuleActionTrackingEventSample SDK 샘플의 일부입니다. 자세한 내용은 RuleActionTrackingEvent 샘플합니다.
this.CanModifyActivities = true;
System.Workflow.Activities.Rules.RuleSetReference rulesetreference1 = new System.Workflow.Activities.Rules.RuleSetReference();
this.simpleDiscountPolicy = new System.Workflow.Activities.PolicyActivity();
//
// simpleDiscountPolicy
//
this.simpleDiscountPolicy.Name = "simpleDiscountPolicy";
rulesetreference1.RuleSetName = "DiscountRuleSet";
this.simpleDiscountPolicy.RuleSetReference = rulesetreference1;
//
// SimplePolicyWorkflow
//
this.Activities.Add(this.simpleDiscountPolicy);
this.Name = "SimplePolicyWorkflow";
this.Completed += new System.EventHandler(this.WorkflowCompleted);
this.CanModifyActivities = false;
Me.CanModifyActivities = True
Dim rulesetreference1 As System.Workflow.Activities.Rules.RuleSetReference = New System.Workflow.Activities.Rules.RuleSetReference
Me.simpleDiscountPolicy = New System.Workflow.Activities.PolicyActivity
'
' simpleDiscountPolicy
'
Me.simpleDiscountPolicy.Name = "simpleDiscountPolicy"
rulesetreference1.RuleSetName = "DiscountRuleSet"
Me.simpleDiscountPolicy.RuleSetReference = rulesetreference1
'
' SimplePolicyWorkflow
'
Me.Activities.Add(Me.simpleDiscountPolicy)
Me.Name = "SimplePolicyWorkflow"
AddHandler Completed, AddressOf Me.OnWorkflowCompleted
Me.CanModifyActivities = False
생성자
RuleSetReference() |
RuleSetReference 클래스의 새 인스턴스를 초기화합니다. |
RuleSetReference(String) |
RuleSetReference의 이름을 사용하여 RuleSet 클래스의 새 인스턴스를 초기화합니다. |
속성
DesignMode |
이 인스턴스가 디자인 모드 또는 런타임 모드에 있는지 나타내는 값을 가져옵니다. (다음에서 상속됨 DependencyObject) |
ParentDependencyObject |
DependencyObject 그래프의 부모 DependencyObject를 가져옵니다. (다음에서 상속됨 DependencyObject) |
RuleSetName |
활동에서 확인하는 RuleSet의 이름을 가져오거나 설정합니다. |
Site |
Site의 DependencyObject 구성 요소에 대한 참조를 가져오거나 설정합니다. (다음에서 상속됨 DependencyObject) |
UserData |
사용자 지정 데이터를 이 클래스 인스턴스와 연결하는 IDictionary를 가져옵니다. (다음에서 상속됨 DependencyObject) |
메서드
명시적 인터페이스 구현
IComponent.Disposed |
구성 요소의 Disposed 이벤트를 처리하는 메서드를 나타냅니다. (다음에서 상속됨 DependencyObject) |