3 implementations of ITagHelperFeature
Microsoft.CodeAnalysis.Razor.Compiler (2)
CSharp\CompilationTagHelperFeature.cs (1)
14public sealed class CompilationTagHelperFeature : RazorEngineFeatureBase, ITagHelperFeature
SourceGenerators\StaticCompilationTagHelperFeature.cs (1)
13internal sealed class StaticCompilationTagHelperFeature(Compilation compilation) : RazorEngineFeatureBase, ITagHelperFeature
rzc (1)
GenerateCommand.cs (1)
522private sealed class StaticTagHelperFeature(TagHelperCollection tagHelpers) : RazorEngineFeatureBase, ITagHelperFeature
5 references to ITagHelperFeature
Microsoft.CodeAnalysis.Razor.Compiler (3)
Language\Components\ComponentTildePathPass.cs (1)
78if (!Engine.TryGetFeature(out ITagHelperFeature? tagHelperFeature))
Language\DefaultRazorTagHelperContextDiscoveryPhase.cs (1)
27if (!Engine.TryGetFeature(out ITagHelperFeature? tagHelperFeature))
SourceGenerators\StaticCompilationTagHelperFeature.cs (1)
50TagHelperCollection ITagHelperFeature.GetTagHelpers(CancellationToken cancellationToken)
rzc (2)
DiscoverCommand.cs (2)
194var feature = engine.Engine.Features.OfType<ITagHelperFeature>().Single();