5 references to WithoutEndTag
Microsoft.CodeAnalysis.Razor.Compiler (5)
Language\DefaultTagHelperResolutionPhase.cs (1)
455
if (boundRulesInfo.Rules.Any(static rule => rule.TagStructure == TagStructure.
WithoutEndTag
))
Language\Legacy\TagHelperBlockRewriter.cs (1)
35
if (nonDefaultRule?.TagStructure == TagStructure.
WithoutEndTag
)
Language\Legacy\TagHelperParseTreeRewriter.cs (1)
361
var invalidRule = boundRulesInfo.Rules.FirstOrDefault(static rule => rule.TagStructure == TagStructure.
WithoutEndTag
);
Language\TagMatchingRuleDescriptor.cs (1)
89
tagName += TagStructure == TagStructure.
WithoutEndTag
? "/" : "";
Language\TagStructure.cs (1)
27
/// <remarks>Elements with a <see cref="
WithoutEndTag
"/> structure will never have any content.</remarks>