23 references to Name
Microsoft.CodeAnalysis.Razor.Compiler (23)
Language\DefaultRazorIntermediateNodeLoweringPhase.cs (11)
999minimizedAttr.Name.GetContent(), string.Empty)); 1401node.Name?.LiteralTokens); 1412AttributeName = node.Name.GetContent(), 1416AttributeNameSpan = BuildSourceSpanFromNode(node.Name), 1424var name = node.Name.GetContent(); 1436node.Name?.LiteralTokens); 1875node.Name.LiteralTokens); 1876var position = node.NamePrefix?.Position ?? node.Name.Position; 1879var name = node.Name.GetContent(); 1895IsDirectiveAttributeCandidate = IsDirectiveAttributeCandidate(node.Name), 1898AttributeNameSpan = BuildSourceSpanFromNode(node.Name),
Language\Legacy\ClassifiedSpanVisitor.cs (1)
267spanComputer.Add(node.Name);
Language\Legacy\TagHelperBlockRewriter.cs (4)
95attributeNameLocation = minimizedAttributeBlock.Name.GetSourceLocation(source); 231var result = CreateTryParseResult(attributeBlock.Name.GetContent(), tagHelpers, processedBoundAttributeNames); 246attributeBlock.Name, 417var attributeNameSyntax = attributeBlock.Name;
Language\Legacy\TagHelperParseTreeRewriter.cs (2)
413if (minimizedAttributeBlock.Name == null) 419var minimizedAttribute = new KeyValuePair<string, string>(minimizedAttributeBlock.Name.GetContent(), string.Empty);
Language\Syntax\Generated\Syntax.xml.Main.Generated.cs (1)
294=> node.Update((MarkupTextLiteralSyntax)Visit(node.NamePrefix), (MarkupTextLiteralSyntax)Visit(node.Name));
Language\Syntax\Generated\Syntax.xml.Syntax.Generated.cs (4)
491if (namePrefix != NamePrefix || name != Name) 503public MarkupMinimizedAttributeBlockSyntax WithNamePrefix(MarkupTextLiteralSyntax namePrefix) => Update(namePrefix, Name); 506public MarkupMinimizedAttributeBlockSyntax AddNameLiteralTokens(params SyntaxToken[] items) => WithName(this.Name.WithLiteralTokens(this.Name.LiteralTokens.AddRange(items)));