1 write to DestinationVertex
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Model\LinkBase.cs (1)
32this.DestinationVertex = destinationVertex;
17 references to DestinationVertex
System.Activities.Presentation (17)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeItemHelper.cs (1)
33BackPointer backPointer = this.extraPropertyBackPointers.FirstOrDefault<BackPointer>((bp) => bp.DestinationVertex == parent && propertyName == bp.PropertyName);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (16)
1062return edge.DestinationVertex; 1072return backPointer.DestinationVertex; 1082((IModelTreeItem)edge.DestinationVertex).RemoveSource(modelProperty); 1088((IModelTreeItem)edge.DestinationVertex).RemoveSource(edge.SourceVertex, edge.PropertyName); 1094((IModelTreeItem)edge.DestinationVertex).RemoveParent(edge.SourceVertex); 1105((IModelTreeItem)edge.DestinationVertex).SetSource(modelProperty); 1109((IModelTreeItem)edge.DestinationVertex).ExtraPropertyBackPointers.Add(new BackPointer(edge.PropertyName, edge.DestinationVertex, edge.SourceVertex)); 1115((IModelTreeItem)edge.DestinationVertex).SetParent(edge.SourceVertex); 1125foreach (ModelProperty p in edge.DestinationVertex.Sources) 1133foreach (BackPointer bp in ((IModelTreeItem)edge.DestinationVertex).ExtraPropertyBackPointers) 1135if (bp.DestinationVertex == from && bp.PropertyName == edge.PropertyName) 1146return ((IModelTreeItem)edge.DestinationVertex).ItemBackPointers.Contains(from); 1154return ((IModelTreeItem)backPointer.DestinationVertex).ModelPropertyStore[backPointer.PropertyName] == backPointer.SourceVertex; 1160ModelItemCollection collection = backPointer.DestinationVertex as ModelItemCollection; 1166ModelItemDictionary dictionary = (ModelItemDictionary)backPointer.DestinationVertex;