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