Base:
property
Children
Microsoft.AspNetCore.Razor.Language.Intermediate.IntermediateNode.Children
22 references to Children
Microsoft.CodeAnalysis.Razor.Compiler (22)
Language\Components\ComponentBindLoweringPass.cs (3)
585
valueNode.
Children
.Add(valueExpressionNode);
608
changeNode.
Children
.Add(changeExpressionNode);
628
expressionNode.
Children
.Add(new CSharpExpressionIntermediateNode()
Language\Components\ComponentDesignTimeNodeWriter.cs (3)
730
if (node.
Children
.Count > 1)
745
else if (node.
Children
.Count == 1 && node.
Children
[0] is HtmlContentIntermediateNode)
Language\Components\ComponentEventHandlerLoweringPass.cs (2)
226
result.
Children
.Add(expressionNode);
288
result.
Children
.Add(expressionNode);
Language\Components\ComponentLoweringPass.cs (7)
657
for (var i = 0; i < attribute.
Children
.Count; i++)
659
if (attribute.
Children
[i] is HtmlAttributeValueIntermediateNode htmlValue)
670
attribute.
Children
[i] = newNode;
672
else if (attribute.
Children
[i] is CSharpExpressionAttributeValueIntermediateNode expressionValue)
683
attribute.
Children
[i] = newNode;
685
else if (attribute.
Children
[i] is CSharpCodeAttributeValueIntermediateNode codeValue)
696
attribute.
Children
[i] = newNode;
Language\Components\ComponentRuntimeNodeWriter.cs (3)
663
if (node.
Children
.Count > 1)
674
else if (node.
Children
.Count == 1 && node.
Children
[0] is HtmlContentIntermediateNode htmlNode)
Language\Intermediate\ComponentAttributeIntermediateNode.cs (4)
65
Children
.Add(attributeNode.Children[i]);
90
Children
.Add(propertyNode.Children[i]);
110
Children
.AddRange(node.Children);
128
Children
.AddRange(node.Children);