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