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