3 writes to Children
PresentationFramework (3)
MS\Internal\Globalization\BamlTreeNode.cs (1)
104
parent.
Children
= new List<BamlTreeNode>(children.Count);
MS\Internal\Globalization\BamlTreeUpdater.cs (2)
293
parent.
Children
= null; // start re-adding child element to parent
312
parent.
Children
= oldChildren; // reset to old children and exit
12 references to Children
PresentationFramework (12)
MS\Internal\Globalization\BamlResourceDeserializer.cs (2)
325
if (node.
Children
!= null)
328
foreach (BamlTreeNode child in node.
Children
)
MS\Internal\Globalization\BamlResourceSerializer.cs (1)
68
PushChildrenToStack(currentNode.
Children
);
MS\Internal\Globalization\BamlTreeMap.cs (5)
142
if (currentNode.
Children
!= null)
144
foreach (BamlTreeNode child in currentNode.
Children
)
595
if (node.
Children
!= null)
603
i < node.
Children
.Count && (comment.LocalizationComments.Length == 0 || comment.LocalizationAttributes.Length == 0);
606
BamlTreeNode child = (BamlTreeNode)node.
Children
[i];
MS\Internal\Globalization\BamlTreeNode.cs (2)
95
List<BamlTreeNode> children = parent.
Children
;
128
parent.
Children
.Add(child);
MS\Internal\Globalization\BamlTreeUpdater.cs (1)
261
List<BamlTreeNode> oldChildren = parent.
Children
;
MS\Internal\Globalization\LocalizableResourceBuilder.cs (1)
180
foreach (BamlTreeNode child in elementNode.
Children
)