2 implementations of GetComponent
System.Workflow.ComponentModel (2)
AuthoringOM\Design\ReferenceService.cs (1)
241IComponent IReferenceService.GetComponent(object reference)
AuthoringOM\Serializer\ActivityCodeDomReferenceService.cs (1)
57public System.ComponentModel.IComponent GetComponent(object reference)
16 references to GetComponent
System.Workflow.Activities (6)
Common\BasePropertyDescriptor.cs (1)
51IComponent baseComponent = referenceService.GetComponent(component);
Rules\Design\LogicalExpressionEditor.cs (4)
44baseActivity = rs.GetComponent(typeDescriptorContext.Instance) as Activity; 108baseActivity = rs.GetComponent(typeDescriptorContext.Instance) as Activity; 152baseActivity = rs.GetComponent(typeDescriptorContext.Instance) as Activity; 210baseActivity = rs.GetComponent(typeDescriptorContext.Instance) as Activity;
Rules\Design\LogicalExpressionTypeConverter.cs (1)
30Activity activity = referenceService.GetComponent(component) as Activity;
System.Workflow.ComponentModel (10)
AuthoringOM\Design\ActivityDesigner.cs (1)
2242Activity changedActivity = (referenceService != null) ? referenceService.GetComponent(e.Component) as Activity : e.Component as Activity;
AuthoringOM\Design\ComponentSerializationService.cs (1)
553component = rs.GetComponent(obj);
AuthoringOM\Design\CompositeActivityDesigner.cs (1)
1484Activity changedActivity = (referenceService != null) ? referenceService.GetComponent(e.Component) as Activity : e.Component as Activity;
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (2)
186activity = rs.GetComponent(this.context.Instance) as Activity; 315activity = rs.GetComponent(this.context.Instance) as Activity;
AuthoringOM\Design\ReferenceService.cs (1)
141IComponent comp = ((IReferenceService)this).GetComponent(cevent.Component);
AuthoringOM\Design\UITypeEditors.cs (1)
72IComponent baseComponent = rs.GetComponent(typeDescriptorContext.Instance);
AuthoringOM\Design\XomlDesignerLoader.cs (1)
877component = referenceService.GetComponent(context.Instance);
AuthoringOM\Serializer\ActivityCodeDomReferenceService.cs (1)
60return refService.GetComponent(reference);
Shared\BasePropertyDescriptor.cs (1)
50IComponent baseComponent = referenceService.GetComponent(component);