RuleSetReference Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
Holds the name of a RuleSet in the RuleSetCollection on the workflow. This class cannot be inherited.
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
- Inheritance
- Attributes
Examples
The following code example shows how to create a new instance of the RuleSetReference class and set it to the value of the PolicyActivity.RuleSetReference property. This code example is part of the RuleActionTrackingEventSample SDK Sample from the SimplePolicyWorkflow.designer.cs file. For more information, see RuleActionTrackingEvent Sample.
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
Constructors
RuleSetReference() |
Initializes a new instance of the RuleSetReference class. |
RuleSetReference(String) |
Initializes a new instance of the RuleSetReference class using the name of the RuleSet. |
Properties
DesignMode |
Gets the value that indicates whether this instance is in design or run-time mode. (Inherited from DependencyObject) |
ParentDependencyObject |
Gets the parent DependencyObject in the DependencyObject graph. (Inherited from DependencyObject) |
RuleSetName |
Gets or sets the name of the RuleSet that the activity evaluates. |
Site |
Gets or sets a reference to the Site component of the DependencyObject. (Inherited from DependencyObject) |
UserData |
Gets an IDictionary that associates custom data with this class instance. (Inherited from DependencyObject) |
Methods
AddHandler(DependencyProperty, Object) |
Adds a handler for an event of a DependencyObject. (Inherited from DependencyObject) |
Dispose() |
Releases all the resources used by the DependencyObject. (Inherited from DependencyObject) |
Dispose(Boolean) |
Releases the unmanaged resources and optionally releases the managed resources used by DependencyObject. (Inherited from DependencyObject) |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetBinding(DependencyProperty) |
Provides access to the ActivityBind associated with the specific DependencyProperty. (Inherited from DependencyObject) |
GetBoundValue(ActivityBind, Type) |
Retrieves the Object that is the subject of an ActivityBind. (Inherited from DependencyObject) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetInvocationList<T>(DependencyProperty) |
Gets an array that contains the delegates for the specified DependencyProperty. (Inherited from DependencyObject) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
GetValue(DependencyProperty) |
Provides access to the value of the designated DependencyProperty. (Inherited from DependencyObject) |
GetValueBase(DependencyProperty) |
Provides access to the bound object of a DependencyProperty and bypasses the GetValue(DependencyProperty) override. (Inherited from DependencyObject) |
InitializeProperties() |
Performs initialization on dependency properties when overridden in a derived class. (Inherited from DependencyObject) |
IsBindingSet(DependencyProperty) |
Indicates whether the value of a DependencyProperty is set as a binding. See SetBinding(DependencyProperty, ActivityBind). (Inherited from DependencyObject) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
MetaEquals(DependencyObject) |
Determines whether the |
RemoveHandler(DependencyProperty, Object) |
Removes an EventHandler from an associated DependencyProperty. (Inherited from DependencyObject) |
RemoveProperty(DependencyProperty) |
Removes a DependencyProperty from the DependencyObject. (Inherited from DependencyObject) |
SetBinding(DependencyProperty, ActivityBind) |
Sets the ActivityBind for the specified DependencyProperty. (Inherited from DependencyObject) |
SetBoundValue(ActivityBind, Object) |
Sets the value of the target ActivityBind. (Inherited from DependencyObject) |
SetReadOnlyPropertyValue(DependencyProperty, Object) |
Sets the value of a DependencyProperty, which is read-only. (Inherited from DependencyObject) |
SetValue(DependencyProperty, Object) |
Sets the value of the DependencyProperty to the object. (Inherited from DependencyObject) |
SetValueBase(DependencyProperty, Object) |
Sets the value of the DependencyProperty to the specified Object, bypassing the SetValue(DependencyProperty, Object). (Inherited from DependencyObject) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Explicit Interface Implementations
IComponent.Disposed |
Represents the method that handles the Disposed event of a component. (Inherited from DependencyObject) |