2 instantiations of AllowedChildTagDescriptorBuilder
Microsoft.AspNetCore.Razor.Language.UnitTests (1)
DefaultAllowedChildTagDescriptorBuilderTest.cs (1)
16var builder = new AllowedChildTagDescriptorBuilder(null);
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\AllowedChildTagDescriptorBuilder_Pooling.cs (1)
12DefaultPool.Create(static () => new AllowedChildTagDescriptorBuilder());
10 references to AllowedChildTagDescriptorBuilder
Microsoft.AspNetCore.Razor.Language.UnitTests (1)
DefaultAllowedChildTagDescriptorBuilderTest.cs (1)
16var builder = new AllowedChildTagDescriptorBuilder(null);
Microsoft.AspNetCore.Razor.Test.Common (1)
Language\TestTagHelperDescriptorBuilderExtensions.cs (1)
184Action<AllowedChildTagDescriptorBuilder>? configure = null)
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\AllowedChildTagDescriptorBuilder_Pooling.cs (3)
11internal static readonly ObjectPool<AllowedChildTagDescriptorBuilder> Pool = 14internal static AllowedChildTagDescriptorBuilder GetInstance(TagHelperDescriptorBuilder parent) 16var builder = Pool.Get();
Language\TagHelperDescriptorBuilder.cs (5)
101public TagHelperObjectBuilderCollection<AllowedChildTagDescriptor, AllowedChildTagDescriptorBuilder> AllowedChildTags { get; } 102= new(AllowedChildTagDescriptorBuilder.Pool); 110public void AllowChildTag(Action<AllowedChildTagDescriptorBuilder> configure) 117var builder = AllowedChildTagDescriptorBuilder.GetInstance(this);