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)
429private sealed class StaticTagHelperFeature(TagHelperCollection tagHelpers) : RazorEngineFeatureBase, ITagHelperFeature
4 references to ITagHelperFeature
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\DefaultRazorTagHelperContextDiscoveryPhase.cs (1)
27if (!Engine.TryGetFeature(out ITagHelperFeature? tagHelperFeature))
SourceGenerators\StaticCompilationTagHelperFeature.cs (1)
34TagHelperCollection ITagHelperFeature.GetTagHelpers(CancellationToken cancellationToken)
rzc (2)
DiscoverCommand.cs (2)
180var feature = engine.Engine.Features.OfType<ITagHelperFeature>().Single();