2 instantiations of TagHelperAttributeMatch
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\TagHelperMatchingConventions.cs (2)
233
match =
new
(name, attribute, parameter);
244
match =
new
(name, attribute, parameter: null);
24 references to TagHelperAttributeMatch
Microsoft.CodeAnalysis.Razor.Compiler (24)
Language\DefaultTagHelperResolutionPhase.ComponentTagHelperResolver.cs (7)
145
using var matches = new PooledArrayBuilder<
TagHelperAttributeMatch
>();
155
foreach (
var
match in matches)
188
TagHelperAttributeMatch
match,
314
/// <see cref="LowerUnresolvedAttributeValues"/> with the <see cref="
TagHelperAttributeMatch
.ExpectsStringValue"/>
321
TagHelperAttributeMatch
match,
849
using var matches = new PooledArrayBuilder<
TagHelperAttributeMatch
>();
859
foreach (
var
match in matches)
Language\DefaultTagHelperResolutionPhase.LegacyTagHelperResolver.cs (6)
120
using var matches = new PooledArrayBuilder<
TagHelperAttributeMatch
>();
134
foreach (
var
match in matches)
176
TagHelperAttributeMatch
match)
205
TagHelperAttributeMatch
match,
270
using var matches = new PooledArrayBuilder<
TagHelperAttributeMatch
>();
276
foreach (
var
match in matches)
Language\Intermediate\TagHelperDirectiveAttributeIntermediateNode.cs (2)
10
private readonly
TagHelperAttributeMatch
_match;
25
internal TagHelperDirectiveAttributeIntermediateNode(
TagHelperAttributeMatch
match)
Language\Intermediate\TagHelperDirectiveAttributeParameterIntermediateNode.cs (2)
8
private readonly
TagHelperAttributeMatch
_match;
26
internal TagHelperDirectiveAttributeParameterIntermediateNode(
TagHelperAttributeMatch
match)
Language\Intermediate\TagHelperPropertyIntermediateNode.cs (2)
8
private readonly
TagHelperAttributeMatch
_match;
22
internal TagHelperPropertyIntermediateNode(
TagHelperAttributeMatch
match)
Language\Legacy\TagHelperBlockRewriter.cs (2)
479
if (TagHelperMatchingConventions.TryGetFirstBoundAttributeMatch(tagHelper, name, out
var
match))
505
if (TagHelperMatchingConventions.TryGetFirstBoundAttributeMatch(tagHelper, name, out
var
match))
Language\TagHelperMatchingConventions.cs (3)
209
ref PooledArrayBuilder<
TagHelperAttributeMatch
> matches)
213
if (TryGetFirstBoundAttributeMatch(tagHelper, name, out
var
match))
220
public static bool TryGetFirstBoundAttributeMatch(TagHelperDescriptor descriptor, string name, out
TagHelperAttributeMatch
match)