6 references to SatisfiesBoundAttributeIndexer
Microsoft.CodeAnalysis.Razor.Compiler (5)
Language\BoundAttributeDescriptorExtensions.cs (2)
32var isIndexerNameMatch = TagHelperMatchingConventions.SatisfiesBoundAttributeIndexer(attribute, name.AsSpan()); 43var isIndexerNameMatch = TagHelperMatchingConventions.SatisfiesBoundAttributeIndexer(attribute, name.AsSpan());
Language\TagHelperAttributeMatch.cs (1)
21=> _isIndexerMatch ??= TagHelperMatchingConventions.SatisfiesBoundAttributeIndexer(Attribute, Name.AsSpan());
Language\TagHelperMatchingConventions.cs (2)
96SatisfiesBoundAttributeIndexer(descriptor, name.AsSpan()) || 127var satisfiesBoundAttributeIndexer = SatisfiesBoundAttributeIndexer(parent, attributeName);
Microsoft.CodeAnalysis.Razor.Workspaces (1)
Hover\HoverFactory.cs (1)
186var isIndexer = TagHelperMatchingConventions.SatisfiesBoundAttributeIndexer(boundAttribute, attributeName.AsSpan());