1 instantiation of SectionRegistry
Microsoft.AspNetCore.Components (1)
RenderTree\Renderer.cs (1)
126
internal SectionRegistry SectionRegistry => _sectionRegistry ??= new
SectionRegistry
(_loggerFactory);
6 references to SectionRegistry
Microsoft.AspNetCore.Components (6)
RenderHandle.cs (1)
27
internal
SectionRegistry
SectionRegistry => _renderer?.SectionRegistry ?? throw new InvalidOperationException("No renderer has been initialized.");
RenderTree\Renderer.cs (2)
42
private
SectionRegistry
? _sectionRegistry;
126
internal
SectionRegistry
SectionRegistry => _sectionRegistry ??= new SectionRegistry(_loggerFactory);
Sections\SectionContent.cs (1)
13
private
SectionRegistry
_registry = default!;
Sections\SectionOutlet.cs (1)
16
private
SectionRegistry
_registry = default!;
Sections\SectionRegistry.cs (1)
13
private readonly ILogger _logger = loggerFactory.CreateLogger<
SectionRegistry
>();