2 instantiations of AllowedChildTagDescriptor
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\AllowedChildTagDescriptorBuilder.cs (1)
32return new AllowedChildTagDescriptor(
rzc (1)
Json\ObjectReaders_TagHelpers.cs (1)
134return new AllowedChildTagDescriptor(name, displayName, diagnostics);
17 references to AllowedChildTagDescriptor
Microsoft.CodeAnalysis.Razor.Compiler (11)
Language\AllowedChildTagDescriptor.cs (1)
10public sealed class AllowedChildTagDescriptor : TagHelperObject<AllowedChildTagDescriptor>
Language\AllowedChildTagDescriptorBuilder.cs (2)
11public sealed partial class AllowedChildTagDescriptorBuilder : TagHelperObjectBuilder<AllowedChildTagDescriptor> 28private protected override AllowedChildTagDescriptor BuildCore(ImmutableArray<RazorDiagnostic> diagnostics)
Language\DefaultTagHelperResolutionPhase.cs (1)
482foreach (var childTag in th.AllowedChildTags)
Language\Legacy\TagHelperParseTreeRewriter.cs (1)
776foreach (var allowedChildTag in tagHelper.AllowedChildTags)
Language\TagHelperDescriptor.cs (5)
42public ImmutableArray<AllowedChildTagDescriptor> AllowedChildTags { get; } 67ImmutableArray<AllowedChildTagDescriptor> allowedChildTags, 96foreach (var allowedChildTag in AllowedChildTags) 115foreach (var descriptor in AllowedChildTags) 180foreach (var allowedChildTag in AllowedChildTags)
Language\TagHelperDescriptorBuilder.cs (1)
101public TagHelperObjectBuilderCollection<AllowedChildTagDescriptor, AllowedChildTagDescriptorBuilder> AllowedChildTags { get; }
rzc (6)
Json\ObjectReaders_TagHelpers.cs (5)
124static AllowedChildTagDescriptor ReadAllowedChildTag(JsonDataReader reader) 128static AllowedChildTagDescriptor ReadFromProperties(JsonDataReader reader) 130var name = reader.ReadNonNullString(nameof(AllowedChildTagDescriptor.Name)); 131var displayName = reader.ReadNonNullString(nameof(AllowedChildTagDescriptor.DisplayName)); 132var diagnostics = reader.ReadImmutableArrayOrEmpty(nameof(AllowedChildTagDescriptor.Diagnostics), ReadDiagnostic);
Json\ObjectWriters_TagHelpers.cs (1)
150static void WriteAllowedChildTag(JsonDataWriter writer, AllowedChildTagDescriptor value)