7 references to Rules
Microsoft.CodeAnalysis.Razor.Compiler (6)
Language\DefaultTagHelperResolutionPhase.cs (2)
457
if (boundRulesInfo.
Rules
.Any(static rule => rule.TagStructure == TagStructure.WithoutEndTag))
1149
foreach (var rule in boundRulesInfo.
Rules
)
Language\Legacy\TagHelperBlockRewriter.cs (1)
33
var nonDefaultRule = boundRulesInfo.
Rules
.FirstOrDefault(static rule => rule.TagStructure != TagStructure.Unspecified);
Language\Legacy\TagHelperParseTreeRewriter.cs (2)
361
var invalidRule = boundRulesInfo.
Rules
.FirstOrDefault(static rule => rule.TagStructure == TagStructure.WithoutEndTag);
484
foreach (var rule in boundRulesInfo.
Rules
)
Language\TagHelperBinding.cs (1)
46
=> AllBoundRules.First(descriptor, static (info, d) => info.Descriptor.Equals(d)).
Rules
;
Microsoft.CodeAnalysis.Razor.Workspaces (1)
AutoInsert\AutoClosingTagOnAutoInsertProvider.cs (1)
159
foreach (var tagMatchingRule in boundRulesInfo.
Rules
)