1 type derived from XamlFragment
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Xaml\ErrorTolerantObjectWriter.cs (1)
974class ActivityFragment : XamlFragment
1 instantiation of XamlFragment
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Xaml\ErrorTolerantObjectWriter.cs (1)
70this.rootFragment = new XamlFragment(schemaContext);
29 references to XamlFragment
System.Activities.Presentation (29)
System.Activities.Presentation\System\Activities\Presentation\Xaml\ErrorTolerantObjectWriter.cs (29)
43XamlFragment rootFragment; 46Stack<XamlFragment> fragmentStack; 71this.fragmentStack = new Stack<XamlFragment>(); 143XamlFragment completedFragment = CurrentFragment; 270XamlFragment CurrentFragment 375XamlFragment.FindBrokenReferences(this.rootFragment); 764XamlFragment target = nameScope.FindName(reference.Name); 774target.ReferencedBy = new HashSet<XamlFragment>(); 848private XamlFragment firstChild; 849private XamlFragment nextSibling; 860public HashSet<XamlFragment> ReferencedBy { get; set; } 865public void AddChild(XamlFragment newChild) 868XamlFragment curChild = this.firstChild; 884public static void FindBrokenReferences(XamlFragment rootFragment) 890Queue<XamlFragment> queue = new Queue<XamlFragment>(); 901XamlFragment current = queue.Dequeue(); 905XamlFragment child = current.firstChild; 916foreach (XamlFragment referencingFragment in current.ReferencedBy) 932XamlFragment child = current.firstChild; 961XamlFragment child = (nodeReader.NodeType == XamlNodeType.Value) ? nodeReader.Value as XamlFragment : null; 1155private Dictionary<string, XamlFragment> declaredNames; 1167public void AddNeededName(XamlFragment fragment, string name, int lineNumber, int linePosition) 1182public XamlFragment FindName(string name) 1187XamlFragment result = null; 1198public bool RegisterName(string name, XamlFragment containingFragment) 1202this.declaredNames = new Dictionary<string, XamlFragment>(); 1215public XamlFragment Fragment { get; set; }