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