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