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