3 writes to Children
PresentationFramework (3)
MS\Internal\Globalization\BamlTreeNode.cs (1)
107
parent.
Children
= new List<BamlTreeNode>(children.Count);
MS\Internal\Globalization\BamlTreeUpdater.cs (2)
319
parent.
Children
= null; // start re-adding child element to parent
338
parent.
Children
= oldChildren; // reset to old children and exit
12 references to Children
PresentationFramework (12)
MS\Internal\Globalization\BamlResourceDeserializer.cs (2)
334
if (node.
Children
!= null)
337
foreach (BamlTreeNode child in node.
Children
)
MS\Internal\Globalization\BamlResourceSerializer.cs (1)
77
PushChildrenToStack(currentNode.
Children
);
MS\Internal\Globalization\BamlTreeMap.cs (5)
158
if (currentNode.
Children
!= null)
160
foreach (BamlTreeNode child in currentNode.
Children
)
610
if (node.
Children
!= null)
618
i < node.
Children
.Count && (comment.LocalizationComments.Length == 0 || comment.LocalizationAttributes.Length == 0);
621
BamlTreeNode child = (BamlTreeNode)node.
Children
[i];
MS\Internal\Globalization\BamlTreeNode.cs (2)
98
List<BamlTreeNode> children = parent.
Children
;
131
parent.
Children
.Add(child);
MS\Internal\Globalization\BamlTreeUpdater.cs (1)
287
List<BamlTreeNode> oldChildren = parent.
Children
;
MS\Internal\Globalization\LocalizableResourceBuilder.cs (1)
183
foreach (BamlTreeNode child in elementNode.
Children
)