3 writes to Children
PresentationFramework (3)
MS\Internal\Globalization\BamlTreeNode.cs (1)
103
parent.
Children
= new List<BamlTreeNode>(children.Count);
MS\Internal\Globalization\BamlTreeUpdater.cs (2)
311
parent.
Children
= null; // start re-adding child element to parent
330
parent.
Children
= oldChildren; // reset to old children and exit
12 references to Children
PresentationFramework (12)
MS\Internal\Globalization\BamlResourceDeserializer.cs (2)
327
if (node.
Children
!= null)
330
foreach (BamlTreeNode child in node.
Children
)
MS\Internal\Globalization\BamlResourceSerializer.cs (1)
69
PushChildrenToStack(currentNode.
Children
);
MS\Internal\Globalization\BamlTreeMap.cs (5)
153
if (currentNode.
Children
!= null)
155
foreach (BamlTreeNode child in currentNode.
Children
)
605
if (node.
Children
!= null)
613
i < node.
Children
.Count && (comment.LocalizationComments.Length == 0 || comment.LocalizationAttributes.Length == 0);
616
BamlTreeNode child = (BamlTreeNode)node.
Children
[i];
MS\Internal\Globalization\BamlTreeNode.cs (2)
94
List<BamlTreeNode> children = parent.
Children
;
127
parent.
Children
.Add(child);
MS\Internal\Globalization\BamlTreeUpdater.cs (1)
279
List<BamlTreeNode> oldChildren = parent.
Children
;
MS\Internal\Globalization\LocalizableResourceBuilder.cs (1)
179
foreach (BamlTreeNode child in elementNode.
Children
)