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