1 instantiation of AllowedChildTagDescriptorBuilder
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\AllowedChildTagDescriptorBuilder_Pooling.cs (1)
11
DefaultPool.Create(static () => new
AllowedChildTagDescriptorBuilder
());
8 references to AllowedChildTagDescriptorBuilder
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\AllowedChildTagDescriptorBuilder_Pooling.cs (3)
10
internal static readonly ObjectPool<
AllowedChildTagDescriptorBuilder
> Pool =
13
internal static
AllowedChildTagDescriptorBuilder
GetInstance(TagHelperDescriptorBuilder parent)
15
var
builder = Pool.Get();
Language\TagHelperDescriptorBuilder.cs (5)
101
public TagHelperObjectBuilderCollection<AllowedChildTagDescriptor,
AllowedChildTagDescriptorBuilder
> AllowedChildTags { get; }
102
= new(
AllowedChildTagDescriptorBuilder
.Pool);
110
public void AllowChildTag(Action<
AllowedChildTagDescriptorBuilder
> configure)
117
var
builder =
AllowedChildTagDescriptorBuilder
.GetInstance(this);