3 writes to Children
PresentationFramework (3)
src\Framework\MS\Internal\Globalization\BamlTreeNode.cs (1)
109parent.Children = new List<BamlTreeNode>(children.Count);
src\Framework\MS\Internal\Globalization\BamlTreeUpdater.cs (2)
318parent.Children = null; // start re-adding child element to parent 337parent.Children = oldChildren; // reset to old children and exit
12 references to Children
PresentationFramework (12)
src\Framework\MS\Internal\Globalization\BamlResourceDeserializer.cs (2)
334if (node.Children != null) 337foreach (BamlTreeNode child in node.Children)
src\Framework\MS\Internal\Globalization\BamlResourceSerializer.cs (1)
79PushChildrenToStack(currentNode.Children);
src\Framework\MS\Internal\Globalization\BamlTreeMap.cs (5)
160if (currentNode.Children != null) 162foreach (BamlTreeNode child in currentNode.Children) 615if (node.Children != null) 623i < node.Children.Count && (comment.LocalizationComments.Length == 0 || comment.LocalizationAttributes.Length == 0); 626BamlTreeNode child = (BamlTreeNode) node.Children[i];
src\Framework\MS\Internal\Globalization\BamlTreeNode.cs (2)
100List<BamlTreeNode> children = parent.Children; 133parent.Children.Add(child);
src\Framework\MS\Internal\Globalization\BamlTreeUpdater.cs (1)
286List<BamlTreeNode> oldChildren = parent.Children;
src\Framework\MS\Internal\Globalization\LocalizableResourceBuilder.cs (1)
180foreach(BamlTreeNode child in elementNode.Children)