2 instantiations of RuleSetReference
System.Workflow.Activities (2)
Designers\PolicyDesigner.cs (1)
75activity.RuleSetReference = new RuleSetReference(ruleSetName);
Rules\Design\LogicalExpressionTypeConverter.cs (1)
146RuleSetReference ruleSetReference = new RuleSetReference();
18 references to RuleSetReference
System.Workflow.Activities (18)
Designers\PolicyDesigner.cs (1)
48RuleSetReference ruleSetReference = activity.RuleSetReference;
Policy.cs (3)
34public static readonly DependencyProperty RuleSetReferenceProperty = DependencyProperty.Register("RuleSetReference", typeof(RuleSetReference), typeof(PolicyActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata, new Attribute[] { new ValidationOptionAttribute(ValidationOption.Required) })); 84public RuleSetReference RuleSetReference 88return (RuleSetReference)base.GetValue(RuleSetReferenceProperty);
Rules\Design\LogicalExpressionEditor.cs (4)
155RuleSetReference ruleSetReference = typeDescriptorContext.PropertyDescriptor.GetValue(typeDescriptorContext.Instance) as RuleSetReference; 201RuleSetReference ruleSetReference = typeDescriptorContext.Instance as RuleSetReference;
Rules\Design\LogicalExpressionTypeConverter.cs (7)
146RuleSetReference ruleSetReference = new RuleSetReference(); 160RuleSetReference convertedValue = value as RuleSetReference; 443RuleSetReference ruleSetReference = component as RuleSetReference; 475RuleSetReference ruleSetReference = component as RuleSetReference;
Rules\RuleSetReference.cs (3)
99RuleSetReference ruleSetReference = obj as RuleSetReference; 102string message = string.Format(CultureInfo.CurrentCulture, Messages.UnexpectedArgumentType, typeof(RuleSetReference).FullName, "obj");