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