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