1 override of GetInnerConnections
System.Workflow.ComponentModel (1)
AuthoringOM\Design\SequentialWorkflowRootDesigner.cs (1)
257protected override ReadOnlyCollection<Point> GetInnerConnections(DesignerEdges edges)
4 references to GetInnerConnections
System.Workflow.ComponentModel (4)
AuthoringOM\Design\ParallelActivityDesigner.cs (1)
220ReadOnlyCollection<Point> connectionPoints = GetInnerConnections(DesignerEdges.Top | DesignerEdges.Bottom);
AuthoringOM\Design\SequentialActivityDesigner.cs (2)
190ReadOnlyCollection<Point> containerConnections = GetInnerConnections(DesignerEdges.Top | DesignerEdges.Bottom); 445ReadOnlyCollection<Point> connectionPoints = GetInnerConnections(DesignerEdges.Top | DesignerEdges.Bottom);
AuthoringOM\Design\SequentialWorkflowRootDesigner.cs (1)
259List<Point> connectionPoints = new List<Point>(base.GetInnerConnections(edges));