11 references to AttributeName
Microsoft.AspNetCore.Razor.Test.Common (1)
Language\IntegrationTests\IntermediateNodeWriter.cs (1)
162WriteContentNode(node, node.AttributeName, node.ParameterName);
Microsoft.CodeAnalysis.Razor.Compiler (10)
Language\Components\ComponentChildContentDiagnosticPass.cs (1)
38if (attribute.AttributeName == childContent.AttributeName)
Language\Components\ComponentDesignTimeNodeWriter.cs (1)
916BeginWriteAttribute(context, node.AttributeName);
Language\Components\ComponentDiagnosticFactory.cs (2)
232childContent1.AttributeName, 235childContent2.AttributeName,
Language\Components\ComponentLoweringPass.cs (1)
403if (child is ComponentChildContentIntermediateNode childContent && attributeName == childContent.AttributeName)
Language\Components\ComponentNodeWriter.cs (1)
222context.CodeWriter.Write($"\"{childContent.AttributeName}\"");
Language\Components\ComponentRuntimeNodeWriter.cs (1)
829BeginWriteAttribute(context, node.AttributeName);
Language\Intermediate\ComponentChildContentIntermediateNode.cs (3)
43formatter.WriteContent(AttributeName); 45formatter.WriteProperty(nameof(AttributeName), AttributeName);