8 writes to AttributeName
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\Components\ComponentBindLoweringPass.cs (3)
573valueNode.AttributeName = valueAttributeName; 596changeNode.AttributeName = changeAttributeName; 623expressionNode.AttributeName = expressionAttributeName;
Language\Components\ComponentFormNameLoweringPass.cs (1)
59AttributeName = node.OriginalAttributeName,
Language\Intermediate\ComponentAttributeIntermediateNode.cs (4)
59AttributeName = attributeNode.AttributeName; 80AttributeName = attributeName; 98AttributeName = node.AttributeName; 118AttributeName = node.AttributeNameWithoutParameter;
14 references to AttributeName
Microsoft.AspNetCore.Razor.Test.Common (1)
Language\IntegrationTests\IntermediateNodeWriter.cs (1)
157WriteContentNode(node, node.AttributeName, node.PropertyName, string.Format(CultureInfo.InvariantCulture, "AttributeStructure.{0}", node.AttributeStructure));
Microsoft.CodeAnalysis.Razor.Compiler (13)
Language\Components\ComponentChildContentDiagnosticPass.cs (2)
38if (attribute.AttributeName == childContent.AttributeName) 42attribute.AttributeName));
Language\Components\ComponentDesignTimeNodeWriter.cs (1)
669var originalAttributeName = node.OriginalAttributeName ?? node.AttributeName;
Language\Components\ComponentEventHandlerLoweringPass.cs (1)
111componentAttribute.AttributeName == eventHandler.AttributeName)
Language\Components\ComponentLoweringPass.cs (1)
399if (child is ComponentAttributeIntermediateNode attributeNode && attributeName == attributeNode.AttributeName)
Language\Components\ComponentMarkupDiagnosticPass.cs (4)
78if (child is ComponentAttributeIntermediateNode attribute && attribute.AttributeName != null) 80if (_attributes.TryGetValue(attribute.AttributeName, out var other)) 109_attributes[attribute.AttributeName] = (attribute.AttributeName, attribute);
Language\Components\ComponentNodeWriter.cs (1)
403context.CodeWriter.WriteStringLiteral(attribute.AttributeName);
Language\Intermediate\ComponentAttributeIntermediateNode.cs (3)
173formatter.WriteContent(AttributeName); 175formatter.WriteProperty(nameof(AttributeName), AttributeName);