16 references to TagHelperMatchingConventions
Microsoft.CodeAnalysis.Razor.Compiler (16)
CSharp\DefaultTagHelperDescriptorFactory.cs (1)
352return TagHelperMatchingConventions.ElementCatchAllName;
Language\AllowedChildTagDescriptorBuilder.cs (1)
46else if (Name != TagHelperMatchingConventions.ElementCatchAllName)
Language\BoundAttributeDescriptorExtensions.cs (2)
32var isIndexerNameMatch = TagHelperMatchingConventions.SatisfiesBoundAttributeIndexer(attribute, name.AsSpan()); 43var isIndexerNameMatch = TagHelperMatchingConventions.SatisfiesBoundAttributeIndexer(attribute, name.AsSpan());
Language\DefaultRazorIntermediateNodeLoweringPhase.cs (1)
976/// Populates the data that <see cref="TagHelperMatchingConventions"/> uses to match tag helpers.
Language\DefaultTagHelperResolutionPhase.ComponentTagHelperResolver.cs (2)
146TagHelperMatchingConventions.GetAttributeMatches(binding.TagHelpers, attributeName, ref matches.AsRef()); 850TagHelperMatchingConventions.GetAttributeMatches(binding.TagHelpers, attributeName, ref matches.AsRef());
Language\DefaultTagHelperResolutionPhase.LegacyTagHelperResolver.cs (3)
81if (!TagHelperMatchingConventions.HasAttributeMatches(binding.TagHelpers, unresolvedAttr.AttributeName)) 121TagHelperMatchingConventions.GetAttributeMatches(binding.TagHelpers, attributeName, ref matches.AsRef()); 271TagHelperMatchingConventions.GetAttributeMatches(binding.TagHelpers, attributeName, ref matches.AsRef());
Language\Legacy\TagHelperBlockRewriter.cs (2)
479if (TagHelperMatchingConventions.TryGetFirstBoundAttributeMatch(tagHelper, name, out var match)) 505if (TagHelperMatchingConventions.TryGetFirstBoundAttributeMatch(tagHelper, name, out var match))
Language\TagHelperAttributeMatch.cs (1)
21=> _isIndexerMatch ??= TagHelperMatchingConventions.SatisfiesBoundAttributeIndexer(Attribute, Name.AsSpan());
Language\TagHelperBinder.cs (2)
68if (tagName == TagHelperMatchingConventions.ElementCatchAllName) 199if (TagHelperMatchingConventions.SatisfiesRule(rule, tagName, parentTagName, attributes))
Language\TagMatchingRuleDescriptorBuilder.cs (1)
65else if (TagName != TagHelperMatchingConventions.ElementCatchAllName)