14 references to IsFullyQualifiedNameMatch
Microsoft.AspNetCore.Razor.Language.UnitTests (2)
IntegrationTests\ComponentDiscoveryIntegrationTest.cs (2)
65
t.
IsFullyQualifiedNameMatch
;
71
!t.
IsFullyQualifiedNameMatch
;
Microsoft.CodeAnalysis.Razor.Compiler (3)
Language\DefaultRazorTagHelperContextDiscoveryPhase.cs (1)
448
if (component.
IsFullyQualifiedNameMatch
)
Language\TagHelpers\Producers\BindTagHelperProducer.cs (1)
544
if (tagHelper.
IsFullyQualifiedNameMatch
)
Language\TagHelpers\Producers\ComponentTagHelperProducer.cs (1)
581
if (component.
IsFullyQualifiedNameMatch
)
Microsoft.CodeAnalysis.Razor.UnitTests (4)
BaseTagHelperProducerTest.cs (4)
90
var fullyQualifiedNameMatchComponents = components.Where(c => c.
IsFullyQualifiedNameMatch
).ToArray();
93
var shortNameMatchComponents = components.Where(c => !c.
IsFullyQualifiedNameMatch
).ToArray();
113
var fullyQualifiedNameMatchComponents = collection.Where(c => c.
IsFullyQualifiedNameMatch
);
116
var shortNameMatchComponents = collection.Where(c => !c.
IsFullyQualifiedNameMatch
);
Microsoft.CodeAnalysis.Razor.Workspaces (5)
CodeActions\Razor\SimplifyFullyQualifiedComponentCodeActionProvider.cs (1)
140
if (!boundTagHelper.
IsFullyQualifiedNameMatch
)
CodeActions\Razor\SimplifyFullyQualifiedComponentCodeActionResolver.cs (1)
55
!tagHelper.
IsFullyQualifiedNameMatch
&&
Completion\TagHelperCompletionService.cs (2)
346
if (!tagHelper.
IsFullyQualifiedNameMatch
)
357
return !tagHelper.
IsFullyQualifiedNameMatch
|| !shortNameSet.Contains(tagHelper);
Rename\RenameService.cs (1)
215
if (binding.TagHelpers is [{
IsFullyQualifiedNameMatch
: true }, ..])